ソースコード
--更新
select 
	 it.ITEM_CODE as CODE
	,it.ITEM_NAME as NAME
	,'UPDATED' as COMP_RSLT
from ITEM it 
	inner join ITEM_HISTORY ith
	 on it.ITEM_CODE = ith.ITEM_CODE
	and it.USER_UPDATE_DATETIME <> ith.USER_UPDATE_DATETIME
union
--登録
select 
	 it.ITEM_CODE as CODE
	,it.ITEM_NAME as NAME
	,'ADDED' as COMP_RSLT
from ITEM it 
	left join ITEM_HISTORY ith
	 on it.ITEM_CODE = ith.ITEM_CODE
where
	ith.ITEM_CODE is null
union
--削除
select 
	 ith.ITEM_CODE as CODE
	,ith.ITEM_NAME as NAME
	,'DELETED' as COMP_RSLT
from ITEM_HISTORY ith
	left join ITEM it
	 on it.ITEM_CODE = ith.ITEM_CODE
where
	it.ITEM_CODE is null
order by
	CODE desc
提出情報
提出日時2024/04/19 16:26:44
コンテスト第12回 SQLコンテスト
問題データ操作履歴
受験者ckoga
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量88 MB
メッセージ
テストケース(通過数/総数)
3/3
状態
メモリ使用量
データパターン1
AC
85 MB
データパターン2
AC
86 MB
データパターン3
AC
88 MB