ソースコード
with st as (
select item.item_code as ca, item.item_name as na, item_history.item_code as cb, item_history.item_name as nb, item.user_update_datetime as ua, item_history.user_update_datetime as ub from item full join item_history on item.item_code = item_history.item_code
)
, st2 as (select 
coalesce(ca, cb) as CODE
, coalesce(na, nb) as NAME
, case 
when ua is null then 'DELETED'
when ub is null then 'ADDED'
else 'UPDATED'
end as COMP_RSLT
from st where ua is not ub
)
select * from st2
order by CODE desc
提出情報
提出日時2024/06/09 23:02:18
コンテスト第12回 SQLコンテスト
問題データ操作履歴
受験者daku10
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量96 MB
メッセージ
テストケース(通過数/総数)
3/3
状態
メモリ使用量
データパターン1
AC
96 MB
データパターン2
AC
82 MB
データパターン3
AC
86 MB