ソースコード
select coalesce(i.item_code,ih.item_code) CODE
, coalesce(i.item_name,ih.item_name) NAME
, case when i.item_code is null then 'DELETED' 
when ih.item_code is null then 'ADDED'
else 'UPDATED'
end COMP_RSLT
from item i
full outer join item_history ih on
i.item_code = ih.item_code
where i.item_code is null 
or ih.item_code is null
or i.USER_UPDATE_DATETIME <> ih.USER_UPDATE_DATETIME
order by 1 desc
提出情報
提出日時2024/04/21 23:18:42
コンテスト第12回 SQLコンテスト
問題データ操作履歴
受験者ry023
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量84 MB
メッセージ
テストケース(通過数/総数)
3/3
状態
メモリ使用量
データパターン1
AC
83 MB
データパターン2
AC
84 MB
データパターン3
AC
83 MB