查詢全體學生的姓名及其出生年份(資料庫)

2021-07-13 09:09:39 字數 1633 閱讀 4421

1樓:世界大同喵

1: select name , age from student;

2: select major_num from student where major = '計算機專業';

3: select * from student where age >19;

4: select name , id from stduent where major = '...';

5: select name , age from student where *** = '男' or age >19

6: select name , id , *** from student where name like '王%'

7: select name , id , *** from student where name not like '王%'

8: select name , id , *** from student where name not like '_佳%'

9: select name , age ,major where age like [18-25]

10: select name , age ,major where age not like [18-25]

11: select * from student where name = (select major from student

where name = '王濤')

12: select id,name from student where major_id = 001

13: select id,name from student where major_id <> 001

14: select * from student where zhuanyechengji > 80

15: select id,score from student where major_id = 001

order by score desc

16: select * from student order by age desc ,major

17:18: select count(*) from student

19: select count(*) from student where exists (select scroe from

student)

20:21:

22:其他幾道沒有把握....就不放出來了

2樓:醉含笑

資料庫結構沒提供出來,誰也做不出來的

如:姓名是用的什麼欄位呀,是name嗎?等等

sql查詢命令實現以下。1.查閱學生表student中學生的學號,姓名和出生日期,結果年齡從大到小

3樓:

--第一題來

select 學號

源bai,姓名,出生du日期zhi from student order by 出生日期

--第二題

select a.學號,a.姓名 from student a inner join score b on a.學號=b.學號

where b.課程編號dao='0101' and b.成績>=90

作業教學中如何處理好面向全體學生與關注個體差異的

教學方法bai有創新。不照本宣科,不du滿堂灌,給學生zhi留有充分的餘地,注重引 dao導學生思回考問題 研究問題 解答決問題。遵循精講多練的原則,講要抓住本質 引人入勝 練要有的放矢,調動學生自己解決實際問題的積極性,讓學生在教師啟發引導下,通過自身的探索,不但知道相關學科領域核心知識 是什麼 ...

為了慶祝建黨九十華誕,某校九年(二)班全體學生準備召開主題班

1 建立新中bai國 建立社會主du 義公有zhi制 香港 澳門迴歸 dao實行改革開放 成功舉辦版2008北京奧運會 神舟權飛船系列發射成功 青藏鐵路建成通車 三峽大壩竣工,等等。答出三點即可,其它符合題意的也可酌情給分 2 開闢了中國特色社會主義道路,形成了中國特色社會主義理論體系。3 主題 黨...

查詢每個學生選修的課程名及其成績?用SQL語句

表結構,沒有表結構語句沒法出來 select 姓名bai,課程名,成績 from 課程du名所zhi 在的表名 cjoin 成績所dao在的表名son c.課程號 s.課程號 join 學生版信權息表 ons.學號 學生資訊表.學號 具體的例子 select sname,cname,grade fr...