ソースコード
with recursive
daterange(d) as (
    select date('2022-08-01')
    union all
    select date(d, '+1 days') from daterange
    where d < date('2022-08-31')
),
t as (
    select strftime('%Y-%m-%d', confirmed_at) as d, user_code
    from users
    where datetime('2022-08-01 00:00') <= confirmed_at
        and confirmed_at < datetime('2022-09-01 00:00')
        and valid_flg = 1
)
select d as REGIST_DATE,
    substr('日月火水木金土', strftime("%w", date(d)) + 1, 1) as WK,
    count(user_code) as TOTAL
from daterange
    left join t
        using(d)
group by d
order by REGIST_DATE
提出情報
提出日時2022/12/10 22:30:34
コンテスト第4回 SQLコンテスト
問題登録人数の日別集計
受験者tera_3939
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量81 MB
メッセージ
テストケース(通過数/総数)
4/4
状態
メモリ使用量
データパターン1
AC
81 MB
データパターン2
AC
79 MB
データパターン3
AC
78 MB
データパターン4
AC
76 MB