增加外键,修改外键&删除外键, mysql中添加外键约束遇到一下情况,外键条件,联合查询,子查询,-- exists子查询

增加外键

创建表的时候增加外键:在所有的表字段之后,

使用foreign key(外键字段) references 外部表(主键字段)

-- 创建外键

create table my_foreign1(

idint primary key auto_increment,

namevarchar(20)not null comment

'学生姓名',

c_idint comment'班级id',

-- 增加外键

foreign key(c_id)references

my_class(id)

)charset utf8;

-- 创建表

create table my_foreign2(

idint primary key auto_increment,

namevarchar(20)not null comment

'学生姓名',

c_idint comment'班级id'

-- 普通字段

)charset utf8;

增加外键(2)

在新增表之后增加外键:修改表结构,使用alter table 表名 add [constraint 外键名字] foreign key(外键字段) references 父表(主键字段);

-- 增加外键

alter table my_foreign2add

-- 指定外键名

constraint student_class_1

-- 指定外键字段

foreign key(c_id)

-- 引用父表主键

references my_class(id);

修改外键&删除外键

alter table 表名 drop foreign key 外键名;

例子:-- 删除外键

alter table my_foreign1drop

foreign key my_foreign1_ibfk_1;

-- 插入数据:外键字段在父表不存在

insert into my_foreign2values(

null,'郭富城',4);-- 没有4号班级(错误)

insert into my_foreign2values(

null,'项羽',1);

insert into my_foreign2values(

null,'刘邦',2);

insert into my_foreign2values(

null,'韩信',3);

update my_foreign2set c_id=2 where id=4;

-- 更新父表记录

update my_classset id=4 where id=1;-- 失败:id=1记录已经被学生引用

update my_classset id=4 where id=3;-- 可以,没有学生引用此班级

-- mysql中添加外键约束遇到一下情况:

-- cannot add foreign key constraint

-- 出现这个问题的原因是,外键的使用:

-- 1. 外键字段不能为该表的主键;

-- 2. 外键字段参考字段必须为参考表的主键

-- 删除外键是否成功,不能看desc结构,要看建表语句

--show create table my_foreign1;

-- 插入数据

insert into my_foreign1values(

null,'马超',3);

外键条件

外键要存在,首先必须保证表的存储引擎是innodb

列类型必须与父表的主键类型一致

一张表中的外键名字不能重复

增加外键的字段数据已经存在,必须保证数据与父表主键要求对应

外键约束

有三种约束模式

district:严格模式(默认的)

cascade:级联模式

set null:置空模式

语法:foreign key(外键字段) references 父表(主键字段) on delete 模式 on update 模式;

-- 增加外键

alter table my_foreign1add

foreign key(c_id)references

my_class(id);-- 失败:因为没有3号班

-- 创建外键:指点模式:删除置空,更新级联

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;

-- 插入数据

insert into my_foreign3values(

null,'刘备',1),

(null,'曹操',1),

(null,'孙权',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;

联合查询

基本语法:

select 语句1

union [union 选项]

select 语句2……

union 选项

all:保留所有,不管重复

distinct:去重,默认的

例子:-- 联合查询

select *from my_classunion -- 默认去重

select *from my_class;

select *from my_classunion all  -- 不去重

select *from my_class;

select id,c_name,roomfrom my_classunion all -- 不去重

select name,number,idfrom my_student;

子查询

按位置分类

from子查询

where子查询

exists子查询

例子:-- 需求:男生升序,女生降序(年龄)

(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=(

-- 标量子查询

select idfrom my_classwhere

c_name='python1903');-- id一定只有一个值(一行一列)

列子查询

-- 插入数据

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);--所有结果(null除外)

select *from my_studentwhere

c_id !=some(select idfrom  my_class);--所有结果(null除外)

select *from my_studentwhere

c_id !=all(select idfrom  my_class);-- 2号班级(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_studentorder by

heightdesc;

-- 表子查询

select *from my_studentgroup by

c_idorder by heightdesc;-- 每个班选出第一个学生在按身高排序

-- 表子查询(每班身高最高的学生)

select *from (select *from

my_studentorder by heightdesc

limit9999999)as studentgroup by c_id;

select exists(select *from my_student);

select exists(select *from my_studentwhere id=100);

-- exists子查询

select *from my_studentwhere

exists(select *from my_class

where id=1);-- 是否成立

select *from my_studentwhere

exists(select *from my_class

where id=2);

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,185评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,445评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 157,684评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,564评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,681评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,874评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,025评论 3 408
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,761评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,217评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,545评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,694评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,351评论 4 332
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,988评论 3 315
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,778评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,007评论 1 266
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,427评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,580评论 2 349

推荐阅读更多精彩内容