ソースコード
select	d.ITEM_CODE as "CODE"
		,i.ITEM_NAME as "NAME"
		,SUM(d.UNITPRICE * d.ORDER_QTY) as "TOTAL_AMT"
  from	ORDERS_DTL d,orders s,item i
 where	s.ORDER_DATE >= '2023-05-14'
   and	s.ORDER_DATE <= '2023-05-20'
   and	d.order_no = s.order_no
   and	d.item_code = i.item_code
 group by d.ITEM_CODE,i.ITEM_NAME
 order by SUM(d.UNITPRICE * d.ORDER_QTY) desc,d.ITEM_CODE desc
 limit 5
提出情報
提出日時2023/06/17 00:30:16
コンテスト第7回 SQLコンテスト
問題受注金額TOP5
受験者ksw_201815
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量79 MB
メッセージ
テストケース(通過数/総数)
3/3
状態
メモリ使用量
データパターン1
AC
76 MB
データパターン2
AC
79 MB
データパターン3
AC
78 MB