SQL查詢題,急等

2022-12-21 02:05:17 字數 933 閱讀 7620

1樓:斯無涯

select 學號,姓名

from 學生情況表

where 學號 in (select 學號 from 學生成績表where 成績<60 and 課程號=(select 課程號 from 課程情況表

where 課程名稱='計算機網路'))

--注意一下相應的屬性與中英文就可以了

2樓:匿名使用者

select 學生情況表.學生姓名

from 學生情況表, 學生成績表

where 學生成績表.學號 = 學生情況表.學號and 課程號 = (select 課程號 from 課程情況表 where 課程名稱 = '計算機網路')

and 成績 < 60

3樓:

select distinct t1.學號,t1.學生姓名,t3.課程名稱,t2.成績

from 學生情況表 t1,

學生成績表 t2,

課程情況表 t3

where t1.學號=t2.學號

and t2.課程號=t3.課程號

and t3.課程名稱='計算機網路'

and t2.成績<60

4樓:匿名使用者

用這個先試試吧,不行就要用子查詢了。

select 學生成績表.學號,學生姓名from 學生情況表,課程情況表,學生成績表where 成績 <60 and 學生成績表.學號=學生情況表.

學號 and 課程名稱=「計算機網路」;

5樓:匿名使用者

select distinct 學號、學生姓名 from 學生情況表 where 學號 in(select 學號 from 學生成績表 a,課程情況表 b where a. 課程號=b.課程號 and 成績》60)

sql查詢問題,急

汗。min 工資 最少的 max 工資 最多的 一樓樣子是對的,但數sum是幹什麼的?select 職員name,工資 min 工資 from 職員表 group by 部門號 select 職員name,工資 max 工資 from 職員表 group by 部門號 select max sum ...

SQL查詢資料語句問題,SQL查詢資料語句問題

取n到m行 1.select top m from tablename where id not in select top n id from tablename order by id asc desc 2.select top m into 臨時表 或表變數 from tablename or...

sql查詢指定記錄的條數,sql語句查詢表內資料條數?

sql 使用 count可以統計指定記錄的條數 結合group by 可以統計不同分類的條目數 例子 id name 1 xk 2 kl 3 xk 統計name xk 的條數 select count number from table where name xk 結果number2 關注 upda...