ソースコード
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
    , round (avg(ORDER_AMNT), 0 ) 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:43:25
コンテスト第10回 SQLコンテスト
問題優良顧客
受験者hmasa
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量93 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
93 MB
データパターン2
AC
92 MB