化繁为简的MySQL数据库

MySQL数据库

数据库(MySQL.com下载)

查看系统所有数据库:show databases;

创建数据库:create database 数据库名 charset=utf8;

切换到指定数据库:use 数据库名

查看当前数据库:select database();

展示创建数据库的语句:show create database 数据库名;

删除数据库:drop database 数据库名;

创建数据表

展示当前数据库中所有表:show tables;

创建一个表结构:create table 表名 (id int unsigned auto_increment primary key not null,name varchar(32),其他字段和属性); 

增(0 或者null表示占位  实际以默认或者自动增长的值  为准)

全列插入和表结构的字段一致。例:insert into students values(0,'小李',150),(null, '小王', 180);

指定插入:insert into students (age, name) values(182, '小王');

1、物理删除

delete from students where id = 7;

删除多行,可以使用in:delete from classmate where id in (2,4,5,6,7,8);

2、逻辑删除-本质上是 更新数据的标记的操作

alter table students add isDelete bit default 0;

update students set isDelete = 1 where id = 1;

例:update students set age =0 where name='小王';

查(基本)

显示全部信息select * from students;

指定字段查询select name,age from students;

字段显示别名,例:select name as '尊姓大名', age as '高寿' from students;

表起别名,例:select s.name,s.age from students s;

查(提高)

条件筛选:><=、不等于<>或者!=

使用枚举查询,enum是一个类,gender=enum()则是创建一个对象,而对象的返回值是内存地址,因此不能使用。枚举(enum)本质数字构成的集合  从1开始 ,可以直接用gender=1,来代表男性——select * from classmate where gender=1;

模糊匹配

%匹配任意多个字符:select * from students where name like '周%';

_匹配1个任意字符:select * from students where name like '周_';

查询 姓名中含有小 的信息:select * from students where name like '%小%';

in () 判断值是否在集合中存在

between 下限 and 上限

查询 height字段没有填写的记录,此处不能使用'=',必须使用is:select * from students where height is NULL;

排序(关键词order by ——ASC 升序<默认>  DESC 降序)

select * from students order by height desc,age asc;

聚合函数

统计数量count()——select count(*) from students;

最大值select max(height) from students;

最小值select min(age) from students where gender = 1;

求和sum、求平均avg、保留小数位数round

分组

以性别分组 显示性别 及其对应分组的平均年龄 及其 分组内每个成员的年龄——select gender, avg(age),group_concat(age) from students group by gender;

分组后过滤having——select gender, avg(age),group_concat(age) from students group by gender having count(*)>2;

分组后汇总with rollup——select gender,count(*) from students group by gender with rollup;

分页

第n页:limit (n-1)*每页数,每页数

例:第3页的数据 每页是3条select * from students limit 6, 3;——limit 开始位置是0

连接查询——(笛卡尔积运算)

内连接——使用on过滤条件即两个表中重复的字段select * from 表1 inner join 表2 on 表1.重复字段 = 表2.重复字段;

左连接—— select * from 表1 left join 表2 on 表1.重复字段 = 表2.重复字段;

可以重命名—例: select * from hero as h left join gongfu as g on h.gongfuid = g.id;

右连接——select * from 表1 right join 表2 on 表1.重复字段 = 表2.重复字段;

自连接—一个表即当表1又当表2,例:左表中的市所属的省id即pid 需要等于右表的省份id即aid    (select * from areas city join areas pro on city.pid = pro.aid  where pro.atitle = '山东省'; )语句中有重命名

子查询

标量子查询

查询出高于平均年龄的学生的信息select * from students where age > (select avg(age) from students);

列子查询(结果是一个集合)—关键字in—格式:主查询where条件in(列子查询)

例:查询已经上课的学生信息select * from students where cls_id in (select id from classes);

行子查询(结果是一个元组)

例:查询出班级上 年龄最大 和 身高最高的信息select * from students where (age,height) = (select max(age),max(height) from students);

展示创建表的语句:show create table students;

查看表结构:desc 表名;

修改表结构(相当于对字段的修改,而非表内容):alter table

添加一个字段—add:alter table students add age tinyint unsigned not null;

修改字段名称、类型、约束—change:例:alter table students change birth(需要修改的字段) birthday(修改后字段) date not null(修改后字段的属性);

只修改字段类型和约束  不改名—modify:例:alter table students modify birthday(需要修改的字段) datetime not null(修改后属性);

删除字段—drop:例:alter table students drop birthday(需要删除的字段);

和pycharm联用

导入模块:import pymysql

创建连接conn = pymysql.connect(host='127.0.0.1',port=3306, user='root',password='mysql',db='python_test_1',charset='utf8')

获取游标cur = conn.cursor()

书写sql语句

执行 数据库操作row_count = cur.execute(sql)

提交修改conn.commit()

先关游标  cur.close() 

再关连接  conn.close()

参数化:可以有效防止sql注入—全部使用%s占位

在execute中传入参数的列表,例:age = input('请输入年龄:')

gender = input('请输入性别:')                  

sql = "select * from students where age>%s and gender= %s;"

row_count = cur.execute(sql,[age,gender])

MySQL高级

视图——视图就是一条SELECT语句执行后返回的结果集

创建视图(建议以V-开头),例:create view v_hebei_areas as select pro.atitle as patitle, c.id as cid, c.atitle as catitle, c.pid as cpid from areas as c join areas as pro on c.pid=pro.id where pro.atitle='河北省';

查看视图:show tables;

使用视图:select * from v_hebei_areas;

删除视图:drop view v_hebei_areas;

事务——原子性、一致性、隔离性、持久性

开启事务:begin

提交事务:commit

回滚事务:rollback

索引

查看索引:show index from 表名;

创建索引:create index 索引名称 on 表名(字段名称(长度));

删除索引:drop index 索引名称 on 表名;

开启时间监测:set profiling=1;

查看执行时间:show profiles;

账户管理——所有用户及权限信息存储在mysql数据库的user表中

查看user表的结构:desc user;

查看所有用户:select *或者(host,user,authentication_string) from user;分号前使用\G显示全部内容

创建账户&授权:grant 权限列表 on 数据库.* to '用户名'@'访问主机' identified by '密码';

修改已有用户的权限,例:grant select, create, update on students to 'xiaoyu'@'localhost' with grant option;

刷新:flush privileges;

修改已有用户的密码,例:update user set authentication_string=password('123456')where user='xiaoyu';

查看用户有哪些权限,例:show grants for 'xiaoyu'@'localhost'

删除一个用户,例:drop user 'xiaoyu'@'localhost';

你可能感兴趣的:(化繁为简的MySQL数据库)