sql查詢問題,急

2022-12-21 17:05:13 字數 640 閱讀 1775

1樓:

汗。 min(工資) 最少的

max(工資) 最多的

一樓樣子是對的,但數sum是幹什麼的?

select 職員name,工資 ,min(工資) from 職員表 group by 部門號

select 職員name,工資 ,max(工資)) from 職員表 group by 部門號

2樓:匿名使用者

select max(sum(工資)) ),min(sum(工資)) from 職員表 group by 部門號

3樓:匿名使用者

select b.yuangonghao,a.* from (select bumenhao,max(gongzi) as gongzi

from yourtable

group by bumenhao

union all

select bumenhao,min(gongzi) as gongzi

from yourtable

group by bumenhao) a left join yourtable b on a.bumenhao=b.bumenhao and a.

gongzi=b.gongzi

sql查詢問題

select sum case when 欄位1 0 then 分數1 else 0 end sum case when 欄位2 0 then 分數2 else 0 end sum case when 欄位3 0 then 分數3 else 0 end from表 如果你的資料庫支援abs func...

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查詢題,急等

select 學號,姓名 from 學生情況表 where 學號 in select 學號 from 學生成績表where 成績 60 and 課程號 select 課程號 from 課程情況表 where 課程名稱 計算機網路 注意一下相應的屬性與中英文就可以了 select 學生情況表.學生姓名...