相关概念
SQL:操作关系型数据库的编程,是结构化查询语言的简称
DDL数据定义
负责数据结构定义与数据库对象定义
CREATE,ALTER,DROP
表操作
查询当前数据库所有表
先通过ues指令进入
SHOW TABLES;
查询表结构
DESC 表名;
查询指定表的建表语句
SHOW CREATE TABLE 表名;
1.表创建
(comment 表注释)
CREATE TABLE 表名(
字段 字段类型 comment ' 编号',
字段 字段类型 comment '姓名'
)
create TABLE stu
(
Sno char(5) primary key, /* 列级定义主码 */
Sname char(18) unique,
Ssex char(2),
Sage int,
Sdept char(15)
);
数据类型char(n) 长度为n的定长字符串Varchar(n) 长度为n的变长字符串 INT 长整型SMALLINT 2短整型DATE 包含年,月,日 YYYY-MM-DD
常用的完整性约束
实体完整性:primary key(主码)
参照完整性:foreign key(外键)
用户自定义完整性约束:非空约束 not null
唯一性 unique
create TABLE Course
(
Cno char(8) primary key,
Cname char(4) not null,
Cpno char(4),
Ctedit int,
foreign key(Cpno) references Course(Cno) /* 表级 */
);
多属性做主码只能在表级(最后)设置
create TABLE SC
(
Sno char(5),
Cno char(7),
Grade int,
primary key(Sno,Cno),
foreign key (Sno) references stu(Sno),
foreign key (Cno) references Course(Cno)
);
2.表修改
alter TABLE <表名>
[modify column <列名> <新数据类型>];
[add[column] <><>];
[drop column <>];
[add primary key()];
[add foreign key() references ];
添加字段
ALTER TABLE 表名 ADD字段名 类型(长度)[COMMENT 注释][约束];
alter TABLE stu add Sphone char(11);
修改数据类型
ALTER TABLE 表名 MODIFY 字段名 新数据类型(长度);
alter TABLE stu modify column Sage;
3.删除
drop TABLE 名[ restrict | cascade];
restrict : 删除的表不能被其他表的约束引用,若被引用该表不能被删除
cascade:删除时相关依赖一起删除
drop TABLE Stu;
4.索引
建立
create [unique][cluster] index<索引名> on <表名>;
create unique index Stsno on stu(Sno ASC);
create unique index Cocno on Course(Cno);
create unique index Scno on SC(Sno DESC, Cno);
删除
drop index <索引名> on <表名>;
or
alter TABLE <表名> drop index<索引名>;
drop index Ssname on Stu;
alter TABLE Stu drop index Ssname;
5.补充数据库
数据库对象:数据库,基本表,视图,索引....
创建数据库
create database <数据库名>
使用/设置当前数据库
use <数据库名>
6.补充非考试要求
ALTER TABLE 表名DROP 字段名;
修改表名: ALTER TABLE 表名 RENAME TO 新名
删除表: DROP TABLE 表名
删除指定表,并重新创建该表 :TRUNCATE TABLE 表名;
DQL数据查询
检索数据库表中数据
SELECT <> from <>
[ where <if> ]
[ group by<> ]
[ order by<> ]
条件:学生表 Student(Sno,Sname,Ssex,Sage,Sdept)课程表 Course(Cno,Cname,Ccredit)学生选课表 SC(Sno,Cno,Grade)
单个表的查询
select Sname,Sdept from Student;
select * from SC;
select LOWER(Sdept) from Student;
设置别名
select address as '工作地点' from 表名; /* 查询address,并且列名显示为工作地点 */
去除重复
select distinct 字段列表 from 表名;
1.条件查询
where子句
select Sname from Student where Sdept = '软件';
selset Sno,Sname,Sage from Student where Sage >= 22;
selsect Sno,Sname,Sage from Student where Sage between 18 and 20;
集合
select Sname,Sage from Student where Sdept in ('网络','信息','计算机');
select Sname,Sage from Student where Sdept not in ('网络','信息','计算机');
字符匹配
%代表任意长度
_代表单个字符
select * from Student where Sno like '1913040903';
or
select * from Student where Sno = '1913040903';
select Sno,Sname,Sage from Student where Sname like '刘%'; /* 姓刘 */
selsect Sname from Student where Sname like '%莉%'; /* 名字带莉*/
需要换码(要查询的字符串本身带有%或_ ,要用ESCAPE'\')
select Cno from Course where Cname like '数据库\_2' EASCAPE '\';
表示跟在转义字符\后的字符_被转义为普通字符
涉及空值
select Sno, Cno from SC where Grade is null;
2.分组查询
group by
having 分组后条件,对分组后的结果进行过滤
select sdept,count(*) from Student group by Sdept; 查询各系人数
select Cno, avg(Grade), count(Sno) from SC group by Cno;
select Sno,Avg(Grade) from SC group by Sno having AVG(Grade)>=80;
select Sno from SC where Grade > 75 group by Sno having count(*) >3;
3.排序查询
排序
ASC 升序
DESC 降序
select Sno,Sage from Student where Sdept = '计算机系' order by Sage DESC;
聚合函数
count ,max, min, avg, sum
将一列作为整体纵向计算
select count(*) from Student;
select count (DISTINCT Sno) from SC;
select avg (age) from SC where Cno='01';
select max(age) from SC where Cno='01';
4.分页查询(非考试范围)
limit 分页
Select 字段表 from 表名 limit 起始索引,查询纪录数
select * from emp limit 0,10;
多表查询
1.等值与非等值连接查询
select Student.*,SC.* from Student, SC where Student.Sno=SC.Sno;
2.自然连接
select Student.*,SC.Cno,SC.Grade from Student,SC where Student.Sno = SC.Sno;
select Sname,Grade from Student,SC
where Student.Sno=SC.Sno and Cno='01' and Grade>75;
3.自身连接
需要给同名属性起别名
select a.Sno,a.Cno,b.Cno,a.Grade from SC a,SC b
where a.Grade = b.Grade and a.Sno = b.Sno
and a.Cno != b.Cno;
4.外连接
将不满足条件的元组一并输出
<表名> left | right [outer] join <表名> on <条件>
左连接:以左边表为基础,基于左边找右边符合条件的记录,若没有就null
select Student.*,Cno from Student left outer join SC on Student.Sno = SC.Sno
集合查询
参加集合查询的列数必须相同,对应的列的数据类型也必须相同
1.并
select * from Stu where Ssex = '男' union select * from Stu where Sage > 22
2.交
select * from Stu where Ssex = '男' intersect select * from Stu where Sage > 22
3.差
select * from Stu where Ssex = '男' except select * from Stu where Sage < 22
嵌套查询
select Sname from Student where Sno in (select Sno from SC where Cno = '2');
子查询不能用 order by
子查询带有in
select * from Student where Sno in (select Sno from SC where Cno = '2');
子查询条件不依赖父查询,称不相关子查询
select * from Student where Sno in (select Sno from SC where Cno in(select Cno from Course where Cname = '数据库'))
等价于连接查询:
select * from Student, SC,Course where Student.Sno=SC.Sno and Course.Cno = SC.Cno
and Cname = '数据库'
带有比较运算
select Sno from SC where Cno = '01' and Grade > (
select Grade from SC where Cno='01'
and Sno =(select Sno from Stu where Sname='李强'))
带有any/all
select * from Student where Sage > all(select Sage from Student where Sdept = '计算机')
等价于
select *from Stu where Sage > (select max(Sage) from Stu where Sdept = '计算机')
带有exits
select Sname from Stu where exists (select*from SC where Stu.Sno=SC.Sno and Cno ='2')
exits是存在量词,SQL没有全称量词,但是可以等价变换(难点)eg:查询至少选修了同学A(200215122)全部课程的学生的学号
查询A同学学号,对所有课程只要A选修了,则将选的同学也选
变换语义后:不存在课程y,A选了y而学生将选的没有选
select distinct Sno from SC SCX where not exits (
select * from SC SCY where SCY.Sno = '200215122' and
not exits
(select * from SC SCZ where SCZ.Sno = SCX.Sno and SCZ.Cno = SCY.Cno))
DML数据操纵/更新
数据操作语言,对数据库中的数据记录进行增删改
INSERT,UPDATE,DELETE
1.添加
给指定字段添加数据
INSERT INTO 表名(字段名一,字段名二) VALUES(值一,值二);
insert into SC(Sno,Cno) values ('09005', '03')
给全部字段添加数据
INSERT INTO 表名 VALUES(值一,值二);
插入子查询结果
insert into Student2 (Sno,Sname,Sdept) select
Sno,Sname,Sdept from Student where Sdept='网络工程'
2.修改数据
update 表名 set <> = '常' where id = 1;
update SC set Grade = Grade+10;
update Stu set Sage=20,Sdept='计算' where Sname = '李四'
update SC set Grade = 0 where 'CS' = (select Sdept from Stu
where Stu.Sno = SC.Sno)
3.删除数据
delete from 表名 where sno='123';
delete from 表名;
1.删除一个元组
delete from Stu where sno='123';
2.删除多个元组
delete from Stu;
3.带子查询的删除语句
delete from SC where Cno in (select Cno from Course
where Cname = '离散');
DCL数据控制
数据控制语言,管理数据库用户,控制访问权限
1)授予权限
grant 权限列表 on 数据库名.表名 to ''@'';
grant select,update on table Stu to user1;
不允许user1得到的限权再授予别的用户
grant update(Sno),select on table SC to nser3 with grant option;
允许将获得的权限授予user4:grant updaye(Sno),select on table SC to user4;
2)查询 (非考试)
show grants for '用户名'@'主机名';
3)撤销权限
revoke 权限列表 on 数据库.表名 from '用户名'@'主机名';
revoke uodate(Sno),select on table SC from user3 cascade;
收回用户3权限,并将从3获得权限的4的权限一并收回