ソースコード
with recursive dates as (select 
'2022-08-01' as d
union all
select date(d, '+1 day')
from dates
where d < '2022-08-31'
)
, u as (select count() as t, date(confirmed_at) as c
from  users
where valid_flg = 1
group by date(confirmed_at)
)
select d as REGIST_DATE
, substr('日月火水木金土', strftime('%w', d)+1, 1) as WK
, ifnull(t, 0) as TOTAL
from dates left join u on dates.d = u.c
提出情報
提出日時2024/04/28 07:59:49
コンテスト第4回 SQLコンテスト
問題登録人数の日別集計
受験者daku10
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量85 MB
メッセージ
テストケース(通過数/総数)
4/4
状態
メモリ使用量
データパターン1
AC
83 MB
データパターン2
AC
84 MB
データパターン3
AC
85 MB
データパターン4
AC
85 MB