ソースコード
with cal as (
    select date('2022-08-01') as day
    union all
    select date(day, '+1 days') from cal where day < date('2022-08-31')
),rec as (
    select
        date(confirmed_at) day,
        count(0) as total
    from
        USERS
    group by
        date(confirmed_at)
)

select
    REGIST_DATE,
    (case
        when wk = '0' then '日' 
        when wk = '1' then '月' 
        when wk = '2' then '火' 
        when wk = '3' then '水' 
        when wk = '4' then '木' 
        when wk = '5' then '金' 
        when wk = '6' then '土'
    end) as WK,
    TOTAL
from
(
select
    cal.day as REGIST_DATE,
    strftime('%w', cal.day) as wk,
    (case when rec.total is null then 0 else rec.total end) as TOTAL
from
    cal
left outer join
    rec
on
    cal.day = rec.day
) A
order by
REGIST_DATE
提出情報
提出日時2023/12/18 15:56:37
コンテスト第4回 SQLコンテスト
問題登録人数の日別集計
受験者nickname
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量86 MB
メッセージ
テストケース(通過数/総数)
1/4
状態
メモリ使用量
データパターン1
WA
85 MB
データパターン2
WA
85 MB
データパターン3
WA
86 MB
データパターン4
AC
85 MB