最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(wǎng) 會(huì)員登陸 & 注冊(cè)

數(shù)據(jù)庫(kù)原理與應(yīng)用(7)PTA查詢部分編程題匯編1

2022-05-09 15:23 作者:洛溪い  | 我要投稿

【簡(jiǎn)單查詢1】

(1)查詢所有學(xué)生的學(xué)號(hào)、姓名、性別和出生日期。

select sno,sname,ssex,bday from students;


(2)查詢前3門課程的課號(hào)及課程名稱。

select cno,cname from course limit 0,3;


(3)查詢2050年所有學(xué)生的姓名及年齡,要求結(jié)果中列名顯示中文。

select sname 姓名,2050-year(bday) 年齡 from students;


(4)查詢至2050年所有年齡小于等于55歲的女生的學(xué)號(hào)和姓名。

select sno 學(xué)號(hào),sname 姓名,ssex 性別 from students where 2050-year(bday)<=55 and ssex='女';


(5)查詢“信息學(xué)院”的學(xué)生姓名、性別和出生日期。

select sname,ssex,bday from students where sdept='信息學(xué)院';


(6)查詢Students表中的所有系名,要求結(jié)果中系名不重復(fù)。

select distinct sdept from students;


(7)查詢“0000010”課程的課名、先修課號(hào)和學(xué)分。

select cname,cpno,ccredit from course where cno='0000010';


(8)查詢成績(jī)?cè)?0~90分之間的選課成績(jī)情況。

select * from sc where score>=80 and score<=90;


(9)查詢成績(jī)?yōu)?9分、79分或89分的記錄。

select * from sc where score in(69,79,89);


(10)查詢?cè)?970年1月1日之前出生的男教師信息。

select * from teachers where tbirthday<='1970-1-1' and tsex='男';


(11)輸出有成績(jī)的學(xué)生學(xué)號(hào)和課號(hào)。

select sno,cno from sc where score is not null;


(12)查詢所有姓“劉”的學(xué)生信息。

select * from students where sname like '劉%';


(13)查詢生源地不是“山東”省的學(xué)生信息。

select * from students where bplace not like '山東%';


(14)查詢名字中含有“明”字的男生的學(xué)生姓名和班級(jí)。

select sname,class from students where sname like '%明%';


(15)查詢姓名是兩個(gè)字的學(xué)生信息。

select * from students where sname like '__';


(16)查詢非信息學(xué)院和機(jī)電學(xué)院的學(xué)生信息。

select * from students where sdept not like '信息學(xué)院' and sdept not like '機(jī)電學(xué)院';


(17)查詢學(xué)生表中沒有聯(lián)系電話的學(xué)生信息。

select * from students where phone is null;


【簡(jiǎn)單查詢2 聚合函數(shù)】

(18)從學(xué)生表統(tǒng)計(jì)總的學(xué)生人數(shù)。

select count(*) 人數(shù) from students;


(19)統(tǒng)計(jì)有學(xué)生選修的課程的門數(shù),多人選修同一門只算一門。

select count(distinct cno) 門數(shù) from sc;


(20)計(jì)算“0000001”課程的平均分、最高分和最低分。

select avg(score) 平均分, max(score) 最高分, min(score) 最低分 from sc where cno='0000001';


(21)查詢選修了“0000008”課程的學(xué)生的學(xué)號(hào)及其成績(jī),查詢結(jié)果按分?jǐn)?shù)降序排列。

select sno,score from sc where cno='0000008' order by score desc;


(22)查詢成績(jī)不及格的學(xué)生學(xué)號(hào)、課號(hào)和成績(jī),并按成績(jī)降序排列。

select sno,cno,score from sc where score<60 order by score desc;


【簡(jiǎn)單查詢3 分組查詢】

(23)查詢各個(gè)課程號(hào)及相應(yīng)的選課人數(shù)。

select cno 課程號(hào),count(sno) 選課人數(shù) from sc group by cno;


(24)統(tǒng)計(jì)每門課程的選課人數(shù)和最高分。

select cno 課程號(hào), count(sno) 選課人數(shù), max(score) 最高分 from sc group by cno;


(25)查詢選修了3門以上課程的學(xué)生學(xué)號(hào)。

select sno 學(xué)號(hào), count(cno) 選課門數(shù) from sc group by sno having count(cno)>3;


(26)統(tǒng)計(jì)輸出各系學(xué)生的人數(shù)。

select sdept 系, count(sno) 人數(shù) from students group by sdept;


(27)統(tǒng)計(jì)每個(gè)學(xué)生的選課門數(shù)和考試總成績(jī),并按選課門數(shù)升序排列。

select sno 學(xué)號(hào), count(cno) 選課門數(shù), sum(score) 考試總成績(jī) from sc group by sno order by 選課門數(shù) asc;


(28)統(tǒng)計(jì)各系的男、女生人數(shù)。

select sdept 系別, ssex 性別, count(sno) 人數(shù) from students group by sdept,ssex order by sdept;


(29)統(tǒng)計(jì)各班男、女生人數(shù)。

select class 班級(jí), ssex 性別, count(sno) 人數(shù) from students group by class,ssex order by class;


(30)統(tǒng)計(jì)各系的老師人數(shù),并按人數(shù)升序排序。

select tdept 系別, count(tno) 教師人數(shù) from teachers group by tdept order by count(tno) asc;


(31)統(tǒng)計(jì)不及格人數(shù)超過(guò)3人的課程號(hào)和人數(shù)。

select cno 課程號(hào), count(*) 不及格人數(shù) from sc where score<60 group by cno having count(*)>3;


(32)查詢信息學(xué)院的男生信息,查詢結(jié)果按出生日期升序排序,出生日期相同的按生源地降序排序。

select * from students where sdept='信息學(xué)院' and ssex='男' order by bday, bplace desc;


(33)統(tǒng)計(jì)選修人數(shù)最多的3門課。

select cno 課程號(hào), count(*) 選修人數(shù) from sc group by cno order by count(*) desc limit 0,3;


【多表連接查詢】

(34)查詢信息學(xué)院女學(xué)生的學(xué)生學(xué)號(hào)、姓名、課號(hào)及考試成績(jī)。

select students.sno,sname,cno,score from students join sc on students.sno=sc.sno where sdept='信息學(xué)院' and ssex='女';


(35)查詢“陳紅”同學(xué)所選課程的成績(jī),列出課號(hào)和成績(jī)(不考慮重名)。

select cno,score from sc join students on sc.sno=students.sno where sname='陳紅';


(36)查詢“王珊”老師所授課程的課程名稱。

select distinct cname from course inner join teaching on course.cno=teaching.cno inner join teachers on teaching.tno=teachers.tno where teachers.tname='王珊';


(37)查詢女教師所授課程的課程號(hào)和課程名稱。

select distinct course.cno,cname from course inner join teaching on course.cno=teaching.cno inner join teachers on teaching.tno=teachers.tno where tsex='女';


(38)查詢至少選修2門課程的女生姓名。

select students.sname from students join sc on students.sno=sc.sno where students.ssex='女' group by sname having count(*)>2;


(39)查詢選修課名中含有“數(shù)據(jù)庫(kù)”三個(gè)字的課程且成績(jī)?cè)?0~90分之間的學(xué)生學(xué)號(hào)及成績(jī)。

select sno,score from sc left join course on sc.cno=course.cno where cname like '%數(shù)據(jù)庫(kù)%' and score between 80 and 90;


(40)查詢選修“0000011”課程的學(xué)生至2050年時(shí)平均年齡。

select avg(2050-year(bday)) 平均年齡 from students join sc on students.sno=sc.sno where cno='0000011';


(41)列出所有學(xué)生的選課情況(包括學(xué)號(hào),姓名,課號(hào),成績(jī)),結(jié)果中包括沒有選課的學(xué)生。

select students.sno,sname,cno,score from sc right outer join students on sc.sno=students.sno;


(42)查詢沒有選課的學(xué)生學(xué)號(hào)和姓名。

select sno,sname from students where sno not in(select sno from sc);

數(shù)據(jù)庫(kù)原理與應(yīng)用(7)PTA查詢部分編程題匯編1的評(píng)論 (共 條)

分享到微博請(qǐng)遵守國(guó)家法律
东源县| 房山区| 朔州市| 麻江县| 孟津县| 寿宁县| 哈尔滨市| 阳城县| 沅陵县| 上林县| 略阳县| 大港区| 乐亭县| 乡宁县| 遂宁市| 怀化市| 澄城县| 封丘县| 丰原市| 安康市| 栖霞市| 盖州市| 甘孜| 岱山县| 丽江市| 高邮市| 驻马店市| 巴马| 根河市| 和顺县| 无为县| 仁布县| 缙云县| 玛曲县| 鄢陵县| 买车| 关岭| 满洲里市| 佳木斯市| 湘潭县| 宜兰市|