Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
以下のような私のサンプルファイル(4列):
ID Balance1 Balance2 Balance3 xx -1 -1 0 yy -1 0 1
各顧客はユニークです。私は負の値と正の値xxの2数を数えたいです。yy1xx0yy1
xx
2
yy
1
0
Excel では COUNTIF 関数を使用できますが、SQL ステートメントはどのように使用できますか?
これを試してください:
Select ID , Sum( Case When value < 0 Then 1 Else 0 End ) As Negatives , Sum( Case When value > 0 Then 1 Else 0 End ) As Positive From sample_table Group By ID