ソースコード
WITH SeqTable AS (
    SELECT '2022-08-01' AS SEQ
    UNION ALL
    SELECT date(SEQ, '1 day') FROM SeqTable WHERE SEQ < '2022-08-31'
)

select
    SEQ as REGIST_DATE
    -- ,strftime('%w', SEQ) as DAY -- 0=Sun
    ,case
        when strftime('%w', SEQ)='0' then '日'
        when strftime('%w', SEQ)='1' then '月'
        when strftime('%w', SEQ)='2' then '火'
        when strftime('%w', SEQ)='3' then '水'
        when strftime('%w', SEQ)='4' then '木'
        when strftime('%w', SEQ)='5' then '金'
        when strftime('%w', SEQ)='6' then '土'
        end as WK
    ,count(*) as TOTAL
from
    SeqTable S
    left outer join
        USERS U
        on
            S.SEQ=date(U.CONFIRMED_AT)
group by 1,2
order by 1,2
;
提出情報
提出日時2022/12/11 14:45:57
コンテスト第4回 SQLコンテスト
問題登録人数の日別集計
受験者1120011
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量80 MB
メッセージ
テストケース(通過数/総数)
0/4
状態
メモリ使用量
データパターン1
WA
80 MB
データパターン2
WA
77 MB
データパターン3
WA
76 MB
データパターン4
WA
80 MB