ソースコード
select
case
when i.item_code is NULL then ih.item_code
else i.item_code
end
as CODE,

case
when i.item_code is NULL then ih.item_name
else i.item_name
end
as NAME,

case
when i.item_code is NULL then 'DELETED'
when ih.item_code is NULL then 'ADDED'
when i.user_update_datetime != ih.user_update_datetime then 'UPDATED'
end
as COMP_RSLT

from item_history as ih
full outer join item as i on i.item_code = ih.item_code

where COMP_RSLT is not NULL
order by CODE desc;
提出情報
提出日時2024/04/21 18:16:22
コンテスト第12回 SQLコンテスト
問題データ操作履歴
受験者yaona
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量83 MB
メッセージ
テストケース(通過数/総数)
3/3
状態
メモリ使用量
データパターン1
AC
83 MB
データパターン2
AC
83 MB
データパターン3
AC
83 MB