ソースコード
select orders.cust_code as CODE, customer.cust_name as NAME, count(orders.cust_code) as CNT, sum(order_amnt) as TTL_AMT, round(avg(order_amnt)) as AVG_AMT
from orders, customer
where
    order_date >= '2023-09-01' and order_date <= '2023-09-30'
    and orders.cust_code = customer.cust_code
group by orders.cust_code
having CNT >= 5
order by
    CNT desc,
    AVG_AMT desc,
    CODE asc
limit 5
提出情報
提出日時2023/12/17 16:36:42
コンテスト第10回 SQLコンテスト
問題優良顧客
受験者toshikish
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量96 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
96 MB
データパターン2
AC
87 MB