ソースコード
select
    CUST_CODE as CODE
    , ( select CUST_NAME from CUSTOMER as B where A.CUST_CODE = B.CUST_CODE )  as NAME
    , count(*) as CNT
    , sum(ORDER_AMNT) as TTL_AMT
    , avg(ORDER_AMNT) % count(*) as AVG_AMT
from ORDERS as A
where ORDER_DATE between '2023-09-01' and '2023-09-30'

group by CUST_CODE
having count(*) >= 5

order by CNT desc , AVG_AMT desc , CODE
limit 5

提出情報
提出日時2023/12/18 09:39:59
コンテスト第10回 SQLコンテスト
問題優良顧客
受験者hmasa
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量91 MB
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
91 MB
データパターン2
WA
91 MB