私のテーブルは次のようになります。
id staus
1 p
1 p
1 c
2 p
2 c
'p'
および'c'
for eachのステータスを持つ行数を生成する必要があるid
ため、期待する結果は次のようになります。
id p c
1 2 1 <-- id 1 has two rows with 'p' and one row with 'c'
2 1 1 <-- id 2 has one row with 'p' and one row with 'c'
どうすればこれを達成できますか?