ソースコード
select
strftime('%Y-%m-%d', confirmed_at) as "REGIST_DATE",
substr('日月火水木金土', strftime('%w', confirmed_at) + 1, 1) as "WK",
count(*) as "TOTAL"
from
users
where
valid_flg = '1'
and 
confirmed_at between '2022-08-01' and '2022-08-31'
group by
strftime('%Y-%m-%d', confirmed_at), substr('日月火水木金土', strftime('%w', confirmed_at) + 1, 1)
order by
confirmed_at
提出情報
提出日時2022/12/12 04:29:29
コンテスト第4回 SQLコンテスト
問題登録人数の日別集計
受験者Reliability
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量77 MB
メッセージ
テストケース(通過数/総数)
0/4
状態
メモリ使用量
データパターン1
WA
77 MB
データパターン2
WA
76 MB
データパターン3
WA
76 MB
データパターン4
WA
75 MB