ソースコード
with tmp as(SELECT ITEM_CODE CODE,
ITEM_NAME NAME,
'ADDED' COMP_RSLT
FROM ITEM i
WHERE 
not exists(select 1 from ITEM_HISTORY ih where i.item_code=ih.item_code ))
,tmp2 as(
 SELECT ITEM_CODE CODE,
ITEM_NAME NAME,
'UPDATED' COMP_RSLT
FROM ITEM i
WHERE 
exists(select 1 from ITEM_HISTORY ih
 where i.item_code=ih.item_code and i.user_update_datetime !=ih.user_update_datetime)
)
,
tmp3 as 
( SELECT ITEM_CODE CODE,
ITEM_NAME NAME ,
'DELETED' COMP_RSLT
from ITEM_HISTORY ih
where not exists (select 1 
from item i where ih.item_code=i.item_code)
),
tmp4 as (
select * from tmp2 union select * from tmp
union select * from tmp3)
select * from tmp4 order by code desc
;
提出情報
提出日時2024/04/21 20:34:57
コンテスト第12回 SQLコンテスト
問題データ操作履歴
受験者noneof383
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量85 MB
メッセージ
テストケース(通過数/総数)
3/3
状態
メモリ使用量
データパターン1
AC
83 MB
データパターン2
AC
85 MB
データパターン3
AC
85 MB