ソースコード
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
    ,case when TOTAL is null then 0 else TOTAL end as TOTAL
from
    SeqTable S
    left outer join
        (select 
            date(CONFIRMED_AT) as DAY
            ,count(*) as TOTAL
        from USERS where VALID_FLG='1'
        group by 1) U
        on
            S.SEQ=DAY
order by 1,2
;
提出情報
提出日時2022/12/11 14:48:24
コンテスト第4回 SQLコンテスト
問題登録人数の日別集計
受験者1120011
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量81 MB
メッセージ
テストケース(通過数/総数)
4/4
状態
メモリ使用量
データパターン1
AC
78 MB
データパターン2
AC
81 MB
データパターン3
AC
78 MB
データパターン4
AC
80 MB