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