ソースコード
update item 
set item_popular_rank=
    case 
        when temp.item_code is not null then temp.setrank 
        else 0 
    end 
from    
(select item_code,sum(b.ORDER_QTY) as item_total, max(a.order_date) as max_date ,RANK() OVER(ORDER BY sum(b.ORDER_QTY) desc,max(a.order_date) desc,b.item_code desc) as setrank from orders as A 
inner join orders_dtl as B
on a.order_no=b.order_no 
where a.order_date between '2023-04-01' and '2023-06-30' 
group by item_code 
) as temp ;
提出情報
提出日時2023/09/03 21:52:45
コンテスト第8回 SQLコンテスト
問題人気順位
受験者kate
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量77 MB
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
76 MB
データパターン2
WA
77 MB