查詢XS表(學生表)中姓「王」的學生資訊,輸出學號 姓名 性別題2資料庫中有兩張表XS

時間 2021-10-15 00:34:28

1樓:

--第一題來

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

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

2樓:世界大同喵

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:其他幾道沒有把握....就不放出來了

3樓:醉含笑

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

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

sql命令 「學生」資料庫中有 「學生表」、「課程表」和 「成績表」。 「學生表」中包含學號、姓名

sql查詢所有學生的學號,姓名和性別,做完了我給高分

4樓:匿名使用者

給我每個表的結構和關聯關聯,我給你做,保證99.99999%滿分

老師暗戀學生眼神是怎樣的 老師暗戀學生的表現

已經堅定不再看她,不再站她旁邊講課了。在中文裡暗戀是一種情緒上的表示,可以暗戀包括物質 由其是人口較多,經濟比較蕭條的國家也可以說是政治上的準允社會矛盾較複雜的國家 滿足性需求 比如人類或動物 這裡有同性暗戀,異性單戀 朋友之間暗戀等。例如 政權上的暗戀。其與明戀相對,可分為單方一廂情願的暗戀和雙方...

利用sql統計「學生」表中學生的總人數

統計 學生 表中學生的總人數的sql語句是 select count from student 其中select代表查詢,count 是統計行數量,student是學生表,使用上述語句可以統計學生表中的所有行記錄也就是學生的總人數。擴充套件資料 常用sql語句介紹 1 查詢指定列 sql selec...

Mysql中查詢表,把結果中的NULL替換成0,請寫出s

可以用case when解決 select case when 欄位 is null then 0 else 欄位 end from 表名 好像是夢 1 mssql isnull 語法isnull check expression replacement value 引數check expressi...