ソースコード
select x.item_code as'CODE',
x.item_name as 'NAME',
'UPDATED' as 'COMP_RSLT'
from item as x
inner join item_history as y
on x.item_code = y.item_code
and x.USER_UPDATE_DATETIME > y.USER_UPDATE_DATETIME
union all
select item_code as'CODE',item_name as 'NAME',
'ADDED' as 'COMP_RSLT'
from item
where item_code not in (select item_code from item_history)
union all
select item_code as'CODE',item_name as 'NAME',
'DELETED' as 'COMP_RSLT'
from item_history
where item_code not in (select item_code from item)
order by 1 desc
提出情報
提出日時2024/04/22 01:45:24
コンテスト第12回 SQLコンテスト
問題データ操作履歴
受験者tabr
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量84 MB
メッセージ
テストケース(通過数/総数)
3/3
状態
メモリ使用量
データパターン1
AC
84 MB
データパターン2
AC
84 MB
データパターン3
AC
83 MB