ソースコード
select
    c.CUST_CODE as code
    ,cust_name as name
    ,count(distinct order_no)as  CNT
    ,sum(ORDER_AMNT	)asTTL_AMT
    ,round(sum(ORDER_AMNT)/count(distinct order_no))as AVG_AMT
from
    CUSTOMER as c
    join
     ORDERS as o
     on c.CUST_CODE=o.cust_code
where
    o.order_date between '2023-09-01' and '2023-09-30'
group by
    c.cust_code
having
    count(distinct order_no)>=5
order by
    cnt desc,AVG_AMT desc,code asc
limit 5
提出情報
提出日時2023/12/18 09:34:59
コンテスト第10回 SQLコンテスト
問題優良顧客
受験者19820314
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量89 MB
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
89 MB
データパターン2
WA
89 MB