目录
一、MySQL概述
二、SQL
1.SQL通用语法
2.SQL分类
DDL
(1)数据库操作
(2)表操作
DML
DQL
语法
执行顺序
DCL
管理用户
权限控制
三、函数
1.基本概念
2.主流关系型数据库管理系统(操作语言均是SQL)
3.启动与连接
4.
create table 表名(
字段1 字段1类型[comment 字段1注释],
字段2 字段2类型[comment 字段1注释],
字段3 字段3类型[comment 字段1注释],
……
字段n 字段n类型[comment 字段1注释],
)[comment 表注释];
#最后一个字段后面没有逗号
mysql> create table tb_user(
-> id int comment '编号',
-> name varchar(50) comment '姓名',
-> age int comment '年龄',
-> gender varchar(1) comment '性别'
-> ) comment '用户表';
Query OK, 0 rows affected (0.08 sec)
mysql> desc tb_user;
+--------+-------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+--------+-------------+------+-----+---------+-------+
| id | int | YES | | NULL | |
| name | varchar(50) | YES | | NULL | |
| age | int | YES | | NULL | |
| gender | varchar(1) | YES | | NULL | |
+--------+-------------+------+-----+---------+-------+
4 rows in set (0.01 sec)
mysql> show create table tb_user;
+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Table | Create Table |
+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tb_user | CREATE TABLE `tb_user` (
`id` int DEFAULT NULL COMMENT '编号',
`name` varchar(50) DEFAULT NULL COMMENT '姓名',
`age` int DEFAULT NULL COMMENT '年龄',
`gender` varchar(1) DEFAULT NULL COMMENT '性别'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='用户表' |
+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.02 sec)
mysql>
数据类型
举例:age tinyint unsigned(年龄一般不会超过四位,不会为负数)
score double(4,1)(分数一般取一位小数,个数不会超过4位数)
举例:char(10)-----性能好 性别 gender char(1)一直占10个位
varchar(10)-----性能较差 用户名 username varchar(50) 有几个字符占几个位
举例:birthday data
create table emp(
id int,
workno varchar(10),
name varchar(10),
gender char(1),
age tinyint unsigned,
idcard char(18),
entrydate date
) comment '员工表';
修改
添加字段 | alter table 表名 add 字段名 类型(长度)[comment 注释][约束]; |
修改数据类型 | alter table 表名 modify 字段名 新数据类型(长度); |
修改字段名和字段类型 | alter table 表名change 旧字段名 新字段名 类型(长度)[comment 注释][约束]; |
删除字段 | alter table 表名 drop 字段名; |
修改表名 | alter table 表名 rename to 新表名; |
alter table emp add nickname varchar(20);
alter table emp change nickname username varchar(30);
mysql> alter table emp drop nickname;
mysql> alter table emp rename to employee;
删除
删除表 | drop table[if exist]表名; |
删除指定表,并重新创建该表 | truncate table 表名;#删除了数据,留下了框架 |
添加数据
给指定字段添加数据 | insert into 表名(字段名1,字段名2,……) values(值1,值2,……); |
给全部字段添加数据 | insert into 表名 values (值1,值2,……); |
批量添加数据 | insert into 表名(字段名1,字段名2,……)values(值1,值2,……),(值1,值2,……); |
insert into 表名 values(值1,值2,……),(值1,值2,……); |
修改数据:update 表名 set 字段名1=值1,字段名2=值2,……[where 条件];#没有条件就是全部修改
update user set name ='ittest' where id=1;
删除数据:delect from 表名[where 条件]
delete from user where age=18;
查询多个字段 | select 字段1,字段2,字段3……from 表名; |
查询所有字段 | select*from 表名; |
设置别名 | select 字段1[as 别名1],字段2[as 别名2]……from 表名; |
去除重复记录 | select distinct 字段列表 from 表名; |
create table emp(
id int,
workno varchar(10),
name varchar(10),
gender char(1),
age tinyint unsigned,
idcard char(18),
entrydate date,
worksddress varchar(50)
) comment '员工表';
insert into emp (id, workno, name, gender, age, idcard, entrydate, worksddress) values (1,'1','刘艳','女',20,'12345678909876','2000-01-01','北京'),
(2,'2','刘小艳','女',21,'12345678809876','2006-01-01','北京'),
(3,'3','刘近','男',24,'12333678909876','2001-05-01','河南'),
(4,'4','丽丽','女',25,'44345678909876','2005-01-01','上海'),
(5,'5','黄丽','女',23,'22775678909876','2004-05-01','南昌'),
(6,'6','金小','女',27,'32348878909876','2009-05-01','北京'),
(7,'7','张艳','女',20,'42345678909876','2010-01-01','北京'),
(8,'8','小力','男',20,'52345678909876','2022-07-01','北京'),
(9,'9','宏光','男',20,'62345678909876','2013-01-01','江苏'),
(10,'10','勇士','男',20,'72345678909876','2014-08-01','北京'),
(11,'11','故里','女',20,'82345678909876','2011-01-01','北京'),
(12,'12','范嘉','女',23,'92345678909876','2017-07-01','沈阳'),
(13,'13','王丹','女',24,'23345678909876','2006-06-01','北京'),
(14,'14','诚实','男',26,'45345678909876','2000-07-01','大连'),
(15,'15','黄亮','男',28,'78345678909876','2009-07-01','北京'),
(16,'16','周芷若','女',20,null,'2009-01-01','北京');
select name,workno,age from emp;
select*from emp;
select worksddress from emp;
select worksddress as '工作地址' from emp;
select distinct worksddress as '工作地址' from emp;
语法 | select 字段列表 from 表名 where 条件列表; |
<>或!= | 不等于 |
between and | 某个范围之内(含最小值,最大值) |
in() | 在in之后的列表中的值,多选一 |
like 占位符 | 模糊匹配(_匹配单个字符,%匹配任意个字符) |
is null | 是null |
and或&& | 并且 |
or 或|| | 或者 |
not或 ! | 非,不是 |
select *from emp where age=20;
select * from emp where age<26;
select*from emp where idcard is null;
select *from emp where idcard is not null;
select *from emp where age!=20;
select *from emp where age>=23 and age<=28;
select *from emp where age between 23 and 28;
select *from emp where gender='女' and age<23;
select *from emp where age=20 or age=21 or age=23;
select *from emp where age in (20,21,23);
select *from emp where name like '___';
select *from emp where idcard like '%6';
语法 | select 聚合函数(字段列表)from 表名; |
count | 统计数量 |
max | 最大值 |
min | 最小值 |
avg | 平均值 |
sum | 求和 |
select count(*) from emp;#null不参与聚合函数计算
select avg(age) from emp;
select max(age) from emp;
select sum(age) from emp where worksddress='北京';
语法 | select 字段列表 from 表名[where 条件] group by 分组字段[having 分组后过滤条件]; | |
where和having区别 | 执行时机不同:where是分组前进行过滤,不满足where条件,不参与分组,having是分组后对结果进行过滤 判断条件不同:where不能对聚合函数进行判断,而having可以 |
|
注意 | ||
执行顺序:where>聚合函数>having | ||
分组之后,查询的字段一般为聚合函数和分组字段,查询其他字段无意义 |
select gender,count(*) from emp group by gender;
select gender,avg(age) from emp group by gender;
select worksddress,count(*) from emp where (age<45) group by worksddress having count(*)>=4;
语法 | select 字段列表 from 表名 order by 字段1 排序方式1,字段2 排序方式2; |
排序方式 | asc:升序(默认)desc:降序 |
select * from emp order by age asc;
select * from emp order by entrydate desc;
select * from emp order by age asc,entrydate desc;
语法 | select 字段列表 from 表名 limit 起始索引,查询记录数; |
注意 | 起始索引从0开始,起始索引=(查询页码-1)*每页显示记录数 分页查询是数据库的方言,不同数据库有不同的实现,MySQL中是limit 如果查询的是第一页数据,起始索引可以省略,直接简写为limit 查询记录数 |
select * from emp limit 0,10;#查询第一页员工信息,每页展示10条记录
select * from emp limit 10,10;#查询第二页员工信息,每页展示10条记录
#练习
select * from emp where gender = '女' and age in(20,21,22,23);
select * from emp where gender='女' and (age between 20 and 40) and name like '___';
select gender,count(*) from emp where age<60 group by gender;
select name,age from emp where age<=35 order by age asc,entrydate desc;
select * from emp where gender='男' and (age between 20 and 40) order by age asc,entrydate desc limit 5;
from 表名列表 --where 条件列表-- group by 分组字段列表--having 分组后条件列表--select 字段列表--order by 排序字段列表--limit 分页字段列表
查询用户 | use mysql; select * from user; |
创建用户 | creat user '用户名'@‘主机名’ identified by '密码'; |
修改用户密码 | alter user ‘用户名’@‘主机名’ identified with mysql_native_password by '密码'; |
删除用户 | drop user '用户名'@‘主机名’; |
#创建用户itcast,只能够在当前主机localhost访问,密码123456;
create user 'itcast'@'localhost' identified by '123456';
#创建用户heima,可以在任意主机访问该数据库,密码123456;
create user 'heima'@'%' identified by '123456';
#修改用户heima 的访问密码为1234;
alter user 'heima'@'%' identified with mysql_native_password by '1234';
#删除itcast@localhost用户
drop user 'itcast'@'localhost';
查询权限 | show grants for '用户名'@‘主机名’; |
授予权限 | grant 权限列表 on 数据库名.表名 '用户名'@'主机名'; |
撤销权限 | revoke 权限列表 on 数据库名.表名 from ‘用户名’@‘主机名’ |
权限(多个权限间用逗号分隔) | 说明 |
all,all privileges | 所有权限 |
select | 查询数据 |
insert | 插入数据 |
update | 修改数据 |
delete | 删除数据 |
alter | 修改表 |
drop | 删除数据库/表/视图 |
create | 创建数据库/表 |
show grants for 'heima'@'%';
grant all on test.* to 'heima'@'%';
#windows搜索cmd 输入MySQL -u heima -p回车再输入密码1234回车用户连接成功可以查询相关权限
revoke all on test.* from 'heima'@'%';
(1)字符串函数
函数 | 功能 |
concat(s1,s2,...,sn) | 字符串拼接,将s1,s2,...sn拼接成一个字符串 |
lower(str) | 将字符串str全部转为小写 |
upper(str) | 将字符串str全部转为大写 |
lpad(str,n,pad) | 左填充,用字符串pad对str的左边进行填充,达到n个字符串长度 |
rpad(str,n,pad) | 右填充,用字符串pad对str的右边进行填充,达到n个字符串长度 |
trim(str) | 去掉字符串头部和尾部的空格 |
substring(str,start,len) | 返回从字符串str从start位置起的len个长度的字符串 |
select concat('hello','mysql');#hellomysql
select lower('Hello');#hello
select lpad('01','5','-');#---01
select trim(' hello mysql ');#hello mysql
select substring('hello mysql',1,5);#hello
update emp set workno =lpad(workno,5,'0');
(2)数值函数
函数 | 功能 |
ceil(x) | 向上取整 |
floor(x) | 向下取整 |
mod(x/y) | 返回x/y的模 |
rand() | 返回0-1内的随机数 |
round(x,y) | 求参数x的四舍五入的值,保留y位小数 |
select ceil(1.5);#2
select floor(1.1);#1
select mod(7,4);#3
select rand();
select round(2.345,2)#2.35
select lpad(round(rand()*1000000,0),6,'0');#随机生成6位数字的密码
(3)日期函数
函数 | 功能 |
curdate() | 返回当前日期 |
curtime() | 返回当前时间 |
now() | 返回当前日期和时间 |
year(date) | 获取date的年份 |
month(date) | 获取date的月份 |
day(date) | 获取date的日期 |
date_add(date,interval exper type) | 返回日期/时间值加上一个时间间隔exper后的时间值 |
datediff(date1,date2) | 返回起始时间date1和结束时间date2之间的天数 |
select curdate();
select curtime();
select now();
select year(now());
select month(now());
select day(now());
select date_add(now(),interval 70 day);
select datediff('2021-12-1',curdate());#-168
select name,datediff(curdate(),entrydate) as'entrydays' from emp order by entrydays desc;
(4)流程函数
函数 | 功能 |
if(value,t,f) | 如果value为true,则返回t,否则返回f |
ifnull(value1,value2) | 如果value1不为空,返回value1,否则返回value2 |
case when [val1] then [res1]... else[defult] end | 如果val为true,返回res1,..否则返回default默认值 |
case [exper] when [val1] then [res1]...else[default] end | 如果exper 的值等于val1,返回res1,...否则返回default 默认值 |
select if(true,'ok','error');
select ifnull(null,'default');
select name,(case worksddress when '北京' then '一线城市' when '上海' then '一线城市' else '二线城市'end) as '工作地址' from emp;