ソースコード
SELECT 
i.item_code CODE,
CASE 
WHEN ih.item_name is null THEN i.item_name
WHEN i.item_name == ih.item_name then NULL
ELSE i.item_name
END NAME
from
ITEM i
left join ITEM_HISTORY ih
on i.item_code=ih.item_code
order by i.item_code desc
提出情報
提出日時2024/06/24 08:20:54
コンテスト第13回 SQLコンテスト
問題名称比較
受験者noneof383
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量85 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
85 MB
データパターン2
AC
84 MB