1樓:
select sum(case when zxop='未操作' then 1 else 0 end) 未操作,
sum(case when zxop='結算中' then 1 else 0 end) 結算中,
sum(case when zxop='操作中' then 1 else 0 end) 操作中,
sum(case when zxop='已完成' then 1 else 0 end) 已完成,
sum(case when zxop='已發團' then 1 else 0 end) 已發團,
sum(case when zxop='已退團' then 1 else 0 end) 已退團
from uuorder
2樓:斯內科
select zxop,count(*) as cx from uuorder group by zxop
--然後行轉列
或者select count(*) as 未操作,(select count(*) from uuorder where zxop='結算中') as '結算中',--以此類推(select count(*) from uuorder where zxop='操作中') as '操作中' from uuorder where zxop='未操作'
sql實現如下查詢:查詢符合條件的某欄位並在每個後面顯示統計記錄數,具體如圖:
3樓:匿名使用者
...你這
bai絕對
du是沒zhi
規律dao的硬性
4樓:
select a.unit,b.sum from (select unit from user where level = 3 ) a ,(select count(*) as sum from user where level = 3 ) b
通過sql欄位查型別,sql如何查某個表某個欄位的資料型別?
要從系統表中查詢了。select a.name as column b.name as type from syscolumns a,systypes b where a.id object id 表名 and a.xtype b.xtype 把 表名 替換成你要檢視欄位 型別的專表名,屬比如你要檢...
SQL查詢問題(統計模組查詢功能多表複雜查詢)請教SQL達人
請參考以下語句 select t1.rq1 as rq isnull x.xs m,0 as xs m,isnull c.cg m,0 as cg m from select rq as rq1 from cgunion select rq from xs as t1left join select...
Excel怎麼查詢某文字並返回其行號與列號
1 獲取行號,選中任意單元格,輸入 row 即返回該公式所在行的行號。2 選中任意單元格,輸入 row 引用單元格 返回被引用單元格所在的行號。這個特性一般用其他函式的引數,比如說 small 區域,row v1 隨著公式的下拉可以順序返回7。3 獲取列號,同row函式一樣,利用column函式可以...