ソースコード

select
*
from
(
select
coalesce(a.item_code,b.item_code) as CODE,
coalesce(a.item_name,b.item_name) as NAME,
case 
    when a.item_code is not null and b.item_code is null then
    'ADDED'
    when  b.item_code is not null and a.item_code is null then
    'DELETED'
    when a.item_code = b.item_code and a.user_update_datetime <> b.user_update_datetime then
    'UPDATED'
end as COMP_RSLT
from
item a
full outer join item_history b
on a.item_code = b.item_code 
) a
where a.COMP_RSLT is not null
order by 
CODE desc
;
提出情報
提出日時2024/04/24 15:43:49
コンテスト第12回 SQLコンテスト
問題データ操作履歴
受験者masashi_sql
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量86 MB
メッセージ
テストケース(通過数/総数)
3/3
状態
メモリ使用量
データパターン1
AC
86 MB
データパターン2
AC
82 MB
データパターン3
AC
82 MB