ソースコード

with upd as (
select t1.* from item t1 join item_history t2 on t1.item_code=t2.item_code where t1.USER_UPDATE_DATETIME <>t2.USER_UPDATE_DATETIME 
)
, ins as (
select t1.* from item t1 left join item_history t2 on t1.item_code=t2.item_code where t2.item_code is null
)
, del as (
select t1.* from item_history t1 left join item t2 on t1.item_code=t2.item_code where t2.item_code is null
)



select item_code as CODE,
item_name as NAME,
x as COMP_RSLT
from (
select *,'UPDATED' as x from upd union all 
select *,'ADDED' as x from ins union all 
select *,'DELETED' as x from del
) as tbl


order by 1 desc;
提出情報
提出日時2024/04/19 18:26:58
コンテスト第12回 SQLコンテスト
問題データ操作履歴
受験者tamurakami
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量92 MB
メッセージ
テストケース(通過数/総数)
3/3
状態
メモリ使用量
データパターン1
AC
86 MB
データパターン2
AC
89 MB
データパターン3
AC
92 MB