一、增加外鍵
創(chuàng)建表的時(shí)候增加外鍵:在所有的表字段之后暖眼,使用foreign key(外鍵字段) references 外部表(主鍵字段)
在新增表之后增加外鍵:修改表結(jié)構(gòu)惕耕,使用alter table 表名 add [constraint 外鍵名字] foreign key(外鍵字段) references 父表(主鍵字段);
二、修改外鍵&刪除外鍵
alter table 表名 drop foreign key 外鍵名;
三诫肠、外鍵條件
外鍵要存在司澎,首先必須保證表的存儲(chǔ)引擎是innodb
列類型必須與父表的主鍵類型一致
一張表中的外鍵名字不能重復(fù)
增加外鍵的字段數(shù)據(jù)已經(jīng)存在欺缘,必須保證數(shù)據(jù)與父表主鍵要求對(duì)應(yīng)
四、外鍵約束
有三種約束模式
1挤安、district:嚴(yán)格模式(默認(rèn)的)
2谚殊、cascade:級(jí)聯(lián)模式
3、set null:置空模式
語法:foreign key(外鍵字段) references 父表(主鍵字段) on delete 模式 on update 模式;
五蛤铜、聯(lián)合查詢
1嫩絮、基本語法:
select 語句1
union [union 選項(xiàng)]
select 語句2……
2、union 選項(xiàng)
all:保留所有围肥,不管重復(fù)
distinct:去重剿干,默認(rèn)的
六、按位置分類
from子查詢
where子查詢
exists子查詢
七穆刻、按結(jié)果分類
標(biāo)量子查詢
列子查詢
行子查詢
表子查詢
————————代碼練習(xí)————————————————
-- 創(chuàng)建外鍵
create table my_foreign1(
idint primary key auto_increment,
namevarchar(20)not null comment
'學(xué)生姓名',
c_idint comment'班級(jí)id',
-- 增加外鍵
foreign key(c_id)references my_class(id)
)charset utf8;
-- 創(chuàng)建表
create table my_foreign2(
idint primary key auto_increment,
namevarchar(20)not null comment
'學(xué)生姓名',
c_idint comment'班級(jí)id' -- 普通字段
)charset utf8;
-- 增加外鍵
alter table my_foreign2add
-- 指定外鍵名
constraint student_class_1
-- 指定外鍵字段
foreign key(c_id)
-- 引用父表主鍵
references my_class(id);
-- 刪除外鍵
alter table my_foreign1drop
foreign key my_foreign1_ibfk_1;
-- 插入數(shù)據(jù):外鍵字段在父表不存在
insert into my_foreign2values(null,'郭富城',4);-- 沒有4號(hào)班級(jí)
insert into my_foreign2values(null,'項(xiàng)羽',1);
insert into my_foreign2values(null,'劉邦',2);
insert into my_foreign2values(null,'韓信',3);
-- 更新父表記錄
update my_classset id=4 where id=1;-- 失斨枚:id=1的記錄已經(jīng)被學(xué)生引用
update my_classset id=5 where id=3;-- 可以改,沒有學(xué)生引用此班級(jí)
-- 插入數(shù)據(jù)
insert into my_foreign1values(
null,'馬超',3);
-- 增加外鍵
alter table my_foreign1add foreign key(c_id)references my_class(id);
-- 失斍馕啊:因?yàn)闆]有3號(hào)班
-- 創(chuàng)建外鍵:指定模式:刪除置空榜轿,更新及聯(lián)
create table my_foreign3(
idint primary key auto_increment,
namevarchar(20)not null,
c_idint,
-- 增加外鍵
foreign key(c_id)
-- 引用表
references my_class(id)
-- 指定刪除模式
on delete set null
-- 指定更新模式
on update cascade
)charset utf8;
-- 插入數(shù)據(jù)
insert into my_foreign3values
(null,'劉備',1),
(null,'曹操',1),
(null,'孫權(quán)',1),
(null,'諸葛亮',2),
(null,'周瑜',2);
-- 解除my_foreign2表的外鍵
alter table my_foreign2drop
foreign key student_class_1;
-- 增新父表主鍵
update my_classset id=3 where id=1;
-- 刪除父表主鍵
delete from my_classwhere id=2;
-- 聯(lián)合查詢
select *from my_class
union -- 默認(rèn)去重
select *from my_class;
select *from my_class
union all -- 不去重
select *from my_class;
select id,c_name,roomfrom my_class
union all -- 不去重
select name,number,idfrom my_student;
-- 需求: 男生升序,女生降序 (年齡)
(select *from my_student
where sex='男'
order by ageasc limit9999999)
union
(select *from my_student
where sex='女'
order by agedesc limit9999999);
select *from my_studentwhere
c_id=(
-- 標(biāo)量子查詢
select idfrom my_classwhere
c_name='Python1903');-- id一定只有一個(gè)值(一行一列)
insert into my_classvalues(1,'Python1907','B407');
-- 列子查詢
select *from my_studentwhere c_idin(select idfrom my_class);
-- any,some,all
select *from my_studentwhere c_id =any(select idfrom my_class);
select *from my_studentwhere c_id =some(select idfrom my_class);
select *from my_studentwhere c_id =all(select idfrom my_class);
select *from my_studentwhere c_id !=any(select idfrom my_class);-- 所有結(jié)果(NULL除外)
select *from my_studentwhere c_id !=some(select idfrom my_class);-- 所有結(jié)果(NULL除外)
select *from my_studentwhere c_id !=all(select idfrom my_class);-- 2號(hào)班級(jí)(NULL除外)
select *from my_studentwhere
age=(select max(age)from my_student)
and
height=(select max(height)from my_student);
-- 行子查詢
select *from my_student
-- (age,height)稱之為行元素
where (age,height)=(
select max(age),max(height)from my_student);
select *from my_studentorder by agedesc,heightdesc limit1;
-- 表子查詢
select *from my_studentgroup by c_idorder by heightdesc;-- 每個(gè)班選出的第一個(gè)學(xué)生
select *from (select *from my_studentorder by heightdesc)
as studentgroup by c_id;-- 每個(gè)班選出的第一個(gè)學(xué)生再按身高排序