1. 程式人生 > >SQL 兩個欄位分組,其中一個欄位的不同情形,分類並計算數量

SQL 兩個欄位分組,其中一個欄位的不同情形,分類並計算數量

查詢結果:

SQL:

select `dateTime`, 
	sum(`result`=(case when result='勝' then '勝'
		 end)) as '勝',
	 sum(`result`=(case when result='負' then '負'
	 	end)) as '負' 
	 from exam  group by `dateTime`, 
	 `result`=(case when result='勝' then '勝'
		when result='負' then '負'
	 	end)