MySQL中有哪些常用的SQL語句,相信很多沒有經(jīng)驗(yàn)的人對(duì)此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個(gè)問題。
創(chuàng)新互聯(lián)主營定日網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營網(wǎng)站建設(shè)方案,App定制開發(fā),定日h5小程序定制開發(fā)搭建,定日網(wǎng)站營銷推廣歡迎定日等地區(qū)企業(yè)咨詢
1、復(fù)雜SQL查詢
1.1、單表查詢
(1)選擇指定的列
[例]查詢?nèi)w學(xué)生的學(xué)號(hào)和姓名
select Sno as 學(xué)號(hào),Sname as 姓名 from student; select Sno,Sname from student;
(2)查詢?nèi)苛?/p>
[例]查詢?nèi)w學(xué)生的詳細(xì)信息
select * from student;
(3)對(duì)查詢后的指定列進(jìn)行命名
[例]查詢?nèi)繉W(xué)生的“姓名”及其“出生年”兩列
select Sname as 姓名,(2014-Sage) as 出生年 from student; select Sname ,(2014-Sage) from student;
(4)消除取值重復(fù)的行
[例]查詢選修了課程的學(xué)生學(xué)號(hào)
select distinct Sno as 選修了課程的學(xué)生學(xué)號(hào) from SC; select distinct Sno from SC;
(5)選擇表中若干元組(滿足條件的)
1.2、大小比較
[例]查詢計(jì)算機(jī)系(IS)全體學(xué)生名單
select Sname as 學(xué)生姓名 from student where Sdept='IS';
[例]查詢?nèi)w20歲以下的學(xué)生姓名和年齡
select Sname as 姓名,Sage as 年齡 from student where Sage<20;
1.3、確定范圍
[例]查詢所有在20到23歲(含20和23)的學(xué)生姓名、系別和年齡
select Sname as 姓名,Sdept as 系別,Sage as 年齡 from student where Sage between20 and 23;
注意between 小數(shù) and 大數(shù)。
1.4、in和not in確定集合
[例]查詢IS系和CS系的全體學(xué)生姓名和性別
select Sname as 姓名,Ssex as 性別 from student where Sdept='IS' or Sdept='CS'; select Sname as 姓名,Ssex as 性別 from student where Sdept in ('IS','CS');
[例]查詢既不屬于IS系,也不屬于MA系的學(xué)生姓名和年齡
select Sname as 姓名,Sage as 年齡 from student where Sdept !='IS'and Sdept!='CS'; select Sname as 姓名,Sage as 年齡 from student where Sdept not in('IS','MA');
1.5、字符匹配(like % _ )
[例]查詢所有姓李的學(xué)生姓名和性別
select Sname as 姓名,Ssex as 性別 from student where Sname like '李%';
[例]查詢所有“2002”年入學(xué)的學(xué)生學(xué)號(hào)、姓名和系別
select Sno as 學(xué)號(hào),Sname as 姓名,Sdept as 系別 from student where Sno like'2002%';
[例]查詢所有不姓“劉”的學(xué)生信息
select * from student where Sname not like'劉%';
[例]查詢名稱含有“數(shù)據(jù)”的課程號(hào)、課程名及學(xué)分
select Cno as 課程號(hào),Cname as 課程名,Ccredit as 學(xué)分 from course where Cname like '%數(shù)據(jù)%';
總結(jié):
select * from course where cname like '%數(shù)據(jù)%';包含數(shù)據(jù)的字符串 select * from course where cname like '數(shù)據(jù)%';以數(shù)據(jù)開頭的字符串 select * from course where cname like '%數(shù)據(jù)'; 以數(shù)據(jù)結(jié)尾的字符串
1.6、涉及空值的查詢(is null)
[例]查詢沒有先修課的課程號(hào)和課程名
select Cno as 課程號(hào),Cname as 課程名,Cpno from course where Cpno is null;
[例]查詢所有有成績的學(xué)生學(xué)號(hào)、課程號(hào)及成績
select Sno as 學(xué)號(hào),Cno as 課程號(hào),Grade as 成績 from SC where Grade is not null;
1.7、查詢結(jié)果排序(order by )
[例]查詢選修了3號(hào)課程的學(xué)生學(xué)號(hào)和成績,結(jié)果按成績降序排列。
select Sno as 學(xué)號(hào),Grade as 成績 from SC where Cno=3 order by Grade desc;
[例]查詢選修了3號(hào)課程的學(xué)生學(xué)號(hào)和成績,結(jié)果按成績升序排列。
select Sno as 學(xué)號(hào),Grade as 成績 from SC where Cno=3 order by Grade asc;
1.8、聚集函數(shù)
count、sum、avg、max、min
[例]查詢學(xué)生總數(shù)
select count(*) as 學(xué)生總數(shù) from student;
[例]查詢所有課程的總學(xué)分
select sum(Ccredit) as 所有課程總學(xué)分 from course;
[例]查詢?nèi)w學(xué)生平均年齡
select avg(Sage) as 平均年齡 from student;
[例]查詢1號(hào)課程的最高分
select max(Grade) as 1號(hào)課程的最高分 from SC where Cno=1;
1.9、分組統(tǒng)計(jì)(group by)
[例]查詢男女學(xué)生各有多少人。
select Ssex as 性別,count(*) as 人數(shù) from student group by Ssex;
[例]查詢每個(gè)課程的課程號(hào)和平均分。
select Cno as 課程號(hào),avg(Grade) as 平均分 from SC group by Cno;
【例】查詢選修了3門課程以上(含3門)的學(xué)生學(xué)號(hào)和選修課程數(shù)。
select Sno as 學(xué)號(hào) ,count(course.Cno) as 選修課程數(shù) From SC,course Where course.Cno=SC.Cno Group by Sno Having Count(course.Cno)>=3;
having 關(guān)鍵字后面直接跟聚集函數(shù)
在 SQL 中增加 HAVING 子句原因是,WHERE 關(guān)鍵字無法與合計(jì)函數(shù)一起使用。
SELECT column_name, aggregate_function(column_name) FROM table_name WHERE column_name operator value GROUP BY column_name HAVING aggregate_function(column_name) operator value
【例】查詢選修了2門課程以上(含2門,但不含1號(hào)課程),學(xué)生學(xué)號(hào)和選修課程數(shù)。
select Sno as 學(xué)號(hào) ,count(course.Cno) as 選修課程數(shù) From SC,course Where course.Cno=SC.Cno and course.Cno !=1 Group by Sno Having Count(course.Cno)>=2;
【例】查詢不及格門數(shù)2門以上的學(xué)生學(xué)號(hào)。
Select Sno from sc Where sc.Grade<60 Group by Sno Having count(Cno)>=2;
【例】查詢有2名以上(含2名)學(xué)生選修了的課程號(hào)和選修人數(shù)。
Select Cno,count(Sno) From SC Group by Cno Having count(sno)>=2
2、連接查詢
(1)等值與非等值連接查詢
[例]查詢每個(gè)學(xué)生及其的選修課程情況
select student.Sno as 學(xué)號(hào),course.Cno as 選修課號(hào),SC.Grade as 成績 from student,course,SC where student.Sno=SC.Sno and course.Cno=SC.Cno ;
(2)自身連接
[例]查詢每個(gè)學(xué)生的間接選修課
select SC.Sno as 學(xué)號(hào), FIRST.Cname as 直接選修課, SECOND.Cname as 間接選修課 from SC, course as FIRST, course as SECOND where FIRST.Cno=SC.Cno and FIRST.Cpno=SECOND.Cno;
(3)外連接
[例]查詢所有學(xué)生選修課程情況(含沒選修課程的學(xué)生)
select student.Sno as 學(xué)號(hào), Sname as 姓名, sc.Cno as 選修課程號(hào) from student LEFT OUTER JOIN SC ON student.Sno=SC.Sno;
join 用于根據(jù)兩個(gè)或多個(gè)表中的列之間的關(guān)系,從這些表中查詢數(shù)據(jù)
JOIN: 如果表中有至少一個(gè)匹配,則返回行 LEFT JOIN: 即使右表中沒有匹配,也從左表返回所有的行 RIGHT JOIN: 即使左表中沒有匹配,也從右表返回所有的行 FULL JOIN: 只要其中一個(gè)表中存在匹配,就返回行
UNION 操作符用于合并兩個(gè)或多個(gè) SELECT 語句的結(jié)果集。 請注意,UNION 內(nèi)部的 SELECT 語句必須擁有相同數(shù)量的列。列也必須擁有相似的數(shù)據(jù)類型。同時(shí),每條 SELECT 語句中的列的順序必須相同。
3 、嵌套查詢
(1)帶有IN謂詞的子查詢( 屬性 in (子查詢的查詢結(jié)果) )
【例】查詢與王敏同學(xué)在同一個(gè)系的學(xué)生信息。
select * from student where Sdept in ( select Sdept from student where Sname='王敏' );
【例】查詢不與王敏同學(xué)不在同一個(gè)系的學(xué)生信息。
select * from student where Sdept not in ( select Sdept from student whereSname='王敏' );
【例】查詢選修了課程名是“信息系統(tǒng)”的學(xué)生學(xué)號(hào)和姓名。
select student.Sno as 學(xué)號(hào), Sname as 姓名 from student,SC where student.Sno=SC.Sno and Cno in ( select Cno from course where Cname='信息系統(tǒng)' )
【例】查詢曾與劉晨一同上課的學(xué)生學(xué)號(hào)和姓名。(假設(shè):一個(gè)課程只有一個(gè)上課班)
select distinct student.Sno as 學(xué)號(hào), Sname as 姓名 from student,SC where student.Sno=SC.Sno and Cno in ( select Cno from SC,student where SC.Sno=student.Sno and student.Sno in ( select Sno from student where student.Sname='劉晨' ) )
內(nèi)層in 查出劉晨的學(xué)號(hào)sno,外層in查出劉晨所上課程的課程號(hào)。
(2)帶有比較運(yùn)算符的子查詢(=,>=,<=,<>或!=)
【例】查詢與王敏同學(xué)在同一個(gè)系的所有學(xué)生信息 (=判斷)
select * from student where Sdept=( select Sdept from student where Sname='王敏' )
【例】查詢每個(gè)學(xué)生超過該課程最低分的課程號(hào)。(同類課程不是最低分的),子查詢的結(jié)果返回一個(gè)數(shù)的時(shí)候,這個(gè)子查詢就可以當(dāng)一個(gè)數(shù)用?可以使用in符號(hào),或者大于小于符號(hào)。
select Cno from SC a where Grade> ( select min(Grade) from SC b where a.Cno=b.Cno )
【例】查詢每個(gè)學(xué)生超過他選修課程平均成績的課程號(hào)。
select Cno from SC a where Grade> ( select avg(Grade) from SC b where a.Sno=b.Sno )
(3)帶有ANY或ALL謂詞的子查詢
ANY表示任何一個(gè),ALL表示所有,可以用在子查詢的括號(hào)前面
【例】查詢其他系中比計(jì)算機(jī)系某一學(xué)生年齡小的學(xué)生姓名,性別、年齡和所在系。
select Sname as 姓名,Ssex as 性別, Sage as 年齡, Sdept as 所在系 from student where Sage <( select Sage from student where Sdept='CS' );
【例】查詢其他系中比計(jì)算機(jī)系所有年齡都小的學(xué)生姓名和年齡。
select Sname as 姓名, Sage as 年齡 from student where Sdept<>'CS' and Sage <ALL ( select Sage from student where Sdept='CS' );
(4 )帶有Exists謂詞的子查詢
【例】查詢所有選修了1號(hào)課程的學(xué)生姓名。
select Sname as 姓名 from student where Exists ( select * from SC where Cno=1 and Sno=Student.Sno );
4、集合查詢
(1)并UNION
【例】 查詢計(jì)算機(jī)系的學(xué)生及年齡不大于19歲的學(xué)生詳細(xì)信息。
select * from student where student.Sdept='CS' union select * from student where student.Sage<=19;
(2)交INTERSECT
【例】查詢選修了1號(hào)課程的與年齡不大于19歲的 學(xué)生 詳細(xì)信息 的交集。
Select * from student,SC where student.Sno=SC.Sno and SC.Cno=1 INTERSECT Select * from student where student.Sage<=19;
(3)差EXCEPT
【例】查詢計(jì)算機(jī)科學(xué)系的學(xué)生與年齡不大于19歲的學(xué)生詳細(xì)信息的差集。
select * from student where student.Sdept='SC' EXCEPT select * from student where student.Sage<=19;
看完上述內(nèi)容,你們掌握MySQL中有哪些常用的SQL語句的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!
名稱欄目:MySQL中有哪些常用的SQL語句
分享鏈接:http://jinyejixie.com/article24/gggcce.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供企業(yè)建站、品牌網(wǎng)站建設(shè)、網(wǎng)站設(shè)計(jì)公司、網(wǎng)站內(nèi)鏈、定制網(wǎng)站、標(biāo)簽優(yōu)化
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)