mysql迴圈統計問題,我要查詢大的職位分類下面的小分類,並統計出小分類裡有釋出多少個職位

時間 2021-10-16 10:57:38

1樓:匿名使用者

不知道你是啥意思,好久沒寫sql了。隨便寫了個,應該是有問題的。你看下思路對不對吧。

select dafenlei_colume as fenlei,count(*) as num

from

(select distinct xiaofenlei_colume ,dafenlei_colume

from table_name

where dafenlei_colume = "***x"

) group by dafenlei_colume

union all

select xiaofenlei_colume as fenlei,count(*) as num

from

(select distinct zhiwei_colume ,xiaofenlei_colume

from table_name

) group by xiaofenlei_colume;

2樓:匿名使用者

group再group

3樓:

去大學的圖書館找,很多那種書

sql讀出記錄並統計出某一欄位的總和

4樓:夜很美

select sum(某一欄位) from 表名

例:select sum(salary) from employees;

5樓:匿名使用者

select * ,sum(欄位) from 表名 where 條件 group by 所有欄位

mysql查詢的問題

select from a a,b b where find in set a.catid,b.catid 0 order by addtime desc select a.catid,b.catd into acatid,bcatid from a a,b b where a.catid b.ca...

mysql選擇表查詢的問題,當表A中存在記錄則輸出A表資料,否則輸出B表資料

select id name,other from select nvl a.id,b.id id nvl a.name,b.name name nvl a.other,b.other other from a full outer join b on a.name b.name where nam...

我要查詢一年前的繳費記錄怎麼查,我想查詢近期的繳費記錄,怎麼查?

廣西電信 運營商為使用者提供最近六個月的充值記錄供使用者查詢 我想查詢近期的繳費記錄,怎麼查? 廣西電信 中國電信使用者想查詢近期的繳費記錄,可以登陸中國電信網上營業廳 充胡漏返值繳費 充褲飢值繳費記錄查詢,即可查詢近期的交費記錄。怎麼查詢繳費記錄 小爺本無心 您好,查詢繳費記錄,我們可以登入網上營...