ソースコード
select
  c.CUST_CODE as CODE,
  c.CUST_NAME as NAME,
  count(*) as CNT,
  sum(o.ORDER_AMNT) as TTL_AMT,
  round(cast(sum(o.ORDER_AMNT) as real) / cast(count(*) as real)) as AVG_AMT
  from ORDERS as o
       join CUSTOMER as c
           on o.CUST_CODE = c.CUST_CODE
 where date(o.ORDER_DATE) >= date('2023-09-01')
   and date(o.ORDER_DATE) <= date('2023-09-30')
 group by o.CUST_CODE
having count(*) >= 5
 order by
   CNT desc,
   AVG_AMT desc,
   CODE asc
       ;
提出情報
提出日時2024/01/07 15:18:43
コンテスト第10回 SQLコンテスト
問題優良顧客
受験者yushi
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量86 MB
メッセージ
テストケース(通過数/総数)
1/2
状態
メモリ使用量
データパターン1
AC
86 MB
データパターン2
WA
85 MB