ソースコード
with t as (
    select date(CONFIRMED_AT) as dt
    from users
    where valid_flg=1
), s as (
    select date('2022-08-01') as REGIST_DATE,
    substr('日月火水木金土', strftime("%w", date('2022-08-01'))+1, 1) as WK,
    (select count(*) from t where t.dt = date('2022-08-01')) as TOTAL
    union all
    select date(REGIST_DATE,'+1 days'), 
    substr('日月火水木金土', strftime("%w", date(REGIST_DATE,'+1 days'))+1, 1),
    (select count(*) from t where t.dt = date(REGIST_DATE,'+1 days'))
    from s
    where REGIST_DATE<date('2022-08-31')
)
select * from s
提出情報
提出日時2023/04/15 19:03:11
コンテスト第4回 SQLコンテスト
問題登録人数の日別集計
受験者tabr
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量85 MB
メッセージ
テストケース(通過数/総数)
4/4
状態
メモリ使用量
データパターン1
AC
81 MB
データパターン2
AC
85 MB
データパターン3
AC
84 MB
データパターン4
AC
75 MB