ソースコード
with tmp1 as (
    select 
        sales_date,
        strftime('%w',date(sales_date)) as weekno,
        substr('日月火水木金土',strftime('%w',sales_date)+1,1) as WEEK,
        sales_amt,
        sales_type,
        updated_no,
        1 as countnum
    from sales
    where sales_date between '2024-03-01' and '2024-03-28' 
    and sales_type<>2 
    and updated_no is null
),
tmp2 as (
    select
        weekno,
        WEEK,
        sum(sales_amt) as sumamt,
        count(sales_date) as weekcount
    from tmp1
    group by week
)
select 
    
    WEEK,
    round(1.0*weekcount/4,0) as AVG_CNT,
    printf('%,d円',round(1.0*sumamt/4,0)) as AVG_AMT
from tmp2
order by weekno;




提出情報
提出日時2024/08/18 21:04:04
コンテスト第12回 SQLコンテスト
問題曜日別売上分析
受験者kate
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量85 MB
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
84 MB
データパターン2
WA
85 MB