ソースコード
with date_tbl as (
    select
        '2022-08-01' as cldate
        , strftime('%w','2022-08-01') as wkno
        , substr('日月火水木金土',strftime('%w','2022-08-01')+1,1) as week
    union all
        select
            date(cldate,'+1 days')
            , strftime('%w',date(cldate,'+1 days'))
            , substr(
                    '日月火水木金土'
                    ,strftime('%w',date(cldate,'+1 days'))+1
                    ,1
                    )
    from date_tbl
    where cldate<'2022-08-31'
)
select 
    cldate as REGIST_DATE
    , week as WK
    , count(user_code) as TOTAL
from date_tbl
left join users on date(users.confirmed_at)=date_tbl.cldate
                and valid_flg='1'
group by cldate
order by cldate asc;
提出情報
提出日時2024/05/15 13:11:28
コンテスト第4回 SQLコンテスト
問題登録人数の日別集計
受験者sjty9561
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量86 MB
メッセージ
テストケース(通過数/総数)
4/4
状態
メモリ使用量
データパターン1
AC
84 MB
データパターン2
AC
85 MB
データパターン3
AC
86 MB
データパターン4
AC
84 MB