外鍵增加刪除 條件約束 聯(lián)合調(diào)查 子查詢

--創(chuàng)建外鍵

# create table my_foreignl(

# id int primary key auto_increment,

# name varchar(20) not null comment

# '學生姓名',

# c_id int comment '班級id',

# --普通字段

# )charset utf8;

# --增加外鍵

# alter table my_foreign2 add

# --指定外鍵名

# constraint atudent_class_1

# --指定外鍵字段

# foreign key(c_id)

# --引用父表主鍵

# references my_class(id);

# --刪除外鍵

# alter table my_foreignl drop

# foreign key my_foreignl_ibfk_l;

# --插入數(shù)據(jù):外鍵字段在父表不存在

# insert into my_foreign2 values(null,'郭富城',4)--沒有四號班級

# insert into my_foreign2 values(null,'項羽',1);

# insert into my_foreign2 values(null,'劉邦',2);

# insert into my_foreign2 values(null,'韓信',3);

# update my_foreign2 set c_id=2

# where id=4;

# --更新父表記錄

# update my_class set id=4 where id=1; --失敗草丧;id=1記錄已經(jīng)被學生引用

# update my_class set id=4 where id=3; --可以:沒有學生引用此班級

# --插入數(shù)據(jù)

# insert into my_foreignl values(null,'馬超',3);

# --增加外鍵

# alter table my_foreignl add foreign key(c_id)references my_class(id);

# --失敳础:因為沒有三號班

# --創(chuàng)建外鍵:指定模式:刪除置空,更新級聯(lián)

# create table my_foreign3(

# id int primary key auto_increment,name varchar(20) not null,

# c_id int,

# --增加外鍵

# foreign key(c_id)

# --引用表

# references my_class(id)

# --指定刪除模式

# on delete set null

# --指定更新模式

# on update cascade

# )charset utf8;

# --插入數(shù)據(jù)

# insert into my_foreign3 values(

# null,'劉備'煤禽,1)岖赋,

# (null,'曹操',1),

# (null,'孫權(quán)',1),

# (null,'諸葛亮',2),

# (null,'周瑜',2);

# --解除my_foreign2表的外鍵

# alter table my_foreign2 drop foreign key student_class_1;

# --更新父表主鍵

# update my_class set id=3 where id=1;

# --刪除父表主鍵

# delete from my_class where id=2;

# --聯(lián)合查詢

# select * from my_class

# union --默認去重

# select * from my_class;

# select * from my_class

# union all --不去重

# select * from my_class;

# select id,c_name,room from my_class

# union all --不去重

# select name,number,id from my_student;

# --需求:男生升序选脊,女生降序(年齡)

# (select * from my_student

# where sex='男'

# order by age asc limit 999999)

# union

# (select * from my_student

#? where sex='女'

#? order by age desc limit 9999999);

# select * from my_student where c_id=(

# --標量子查詢

# select id from my_class where c_name='Python1903');--id一定只有一個值(一行一列)

# insert into my_class values(1,'python1907','B407');

# --列子查詢

# select * from my_student where c_id in(select id from my_class);

# --any,some,all

# select * from my_student where c_id=any(select id from my_class);

# select * from my_student where c_id=some(select id from my_class);

# select * from my_student where c_id=all(select id from my_class);

# select * from my_student where c_id!=any(select id from my_class); --所有結(jié)果(NULL除外)

# select * from my_student where c_id!=some(select id from my_class); --所有結(jié)果(NULL除外)

# select * from my_student where c_id!=all(select id from my_class); --2號班級(NULL除外)

# update? my_student set height=188

# where name='王五';

# select * from my_student where 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_student order by age desc,height desc limit 1;

# --表字查詢

# select * from my_student group by c_id order by height desc;--每個班選出第一個學生再按身高排序

# selecr * from (select * from my_student order by height desc)

# as student group by student.c_id;

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市丹诀,隨后出現(xiàn)的幾起案子翁垂,更是在濱河造成了極大的恐慌硝桩,老刑警劉巖,帶你破解...
    沈念sama閱讀 206,311評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異望薄,居然都是意外死亡呼畸,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,339評論 2 382
  • 文/潘曉璐 我一進店門卧须,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人花嘶,你說我怎么就攤上這事蹦漠。” “怎么了隘击?”我有些...
    開封第一講書人閱讀 152,671評論 0 342
  • 文/不壞的土叔 我叫張陵研铆,是天一觀的道長。 經(jīng)常有香客問我凶赁,道長窄赋,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,252評論 1 279
  • 正文 為了忘掉前任浩峡,我火速辦了婚禮错敢,結(jié)果婚禮上缕粹,老公的妹妹穿的比我還像新娘纸淮。我一直安慰自己,他們只是感情好绘面,可當我...
    茶點故事閱讀 64,253評論 5 371
  • 文/花漫 我一把揭開白布侈沪。 她就那樣靜靜地躺著,像睡著了一般瘦馍。 火紅的嫁衣襯著肌膚如雪应役。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,031評論 1 285
  • 那天院崇,我揣著相機與錄音袍祖,去河邊找鬼。 笑死盲泛,一個胖子當著我的面吹牛,可吹牛的內(nèi)容都是我干的柑营。 我是一名探鬼主播,決...
    沈念sama閱讀 38,340評論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼官套,長吁一口氣:“原來是場噩夢啊……” “哼蚁孔!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起站刑,我...
    開封第一講書人閱讀 36,973評論 0 259
  • 序言:老撾萬榮一對情侶失蹤鼻百,失蹤者是張志新(化名)和其女友劉穎摆尝,沒想到半個月后因悲,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,466評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡讯检,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 35,937評論 2 323
  • 正文 我和宋清朗相戀三年视哑,在試婚紗的時候發(fā)現(xiàn)自己被綠了誊涯。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片暴构。...
    茶點故事閱讀 38,039評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡段磨,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出苹支,到底是詐尸還是另有隱情,我是刑警寧澤晴埂,帶...
    沈念sama閱讀 33,701評論 4 323
  • 正文 年R本政府宣布寻定,位于F島的核電站,受9級特大地震影響狼速,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜恼蓬,卻給世界環(huán)境...
    茶點故事閱讀 39,254評論 3 307
  • 文/蒙蒙 一僵芹、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧拇派,春花似錦本股、人聲如沸桐腌。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,259評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽蟆盐。三九已至,卻和暖如春石挂,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背痹愚。 一陣腳步聲響...
    開封第一講書人閱讀 31,485評論 1 262
  • 我被黑心中介騙來泰國打工拯腮, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人动壤。 一個月前我還...
    沈念sama閱讀 45,497評論 2 354
  • 正文 我出身青樓,卻偏偏與公主長得像阁簸,于是被迫代替她去往敵國和親哼丈。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 42,786評論 2 345

推薦閱讀更多精彩內(nèi)容