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 nameid,name,count namecount from select a.nameid,a.name,locate concat a.name,concat b.name,from table1 a table2 b where locate concat a.name,co...

mysql結果集處理問題,mysql查詢結果null值處理問題。

應該是沒有的.你可以自己封裝一個嘛.function findall sql,connection else mysql free result result return drows 您的問題有點不明確啊 不過你應該看一下php幫助手冊 那裡應該有 如果沒有那就自己編個函式 我們通過 perfor...

c語言。剛開始學。問小問題。如果我在for迴圈語句後面加了個分號。計算機怎麼執行

煙火夜空 如果 for 裡面 什麼也沒有,for 外面是個分號,那就相當於,條件為空 非0 迴圈內容為空,死迴圈。 聽不清啊 如果在for 迴圈語句後面加了個分號,變成 for 導致的結果是 原來的迴圈判斷照常進行,但是如果條件成立的話,它執行的是一個空語句 如果這時的迴圈還能正常結束的話,比如說,...