ソースコード
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_RESULT
from st where ua is not ub
)
select * from st2
order by CODE desc
提出情報
提出日時2024/06/09 23:01:47
コンテスト第12回 SQLコンテスト
問題データ操作履歴
受験者daku10
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量96 MB
メッセージ
テストケース(通過数/総数)
0/3
状態
メモリ使用量
データパターン1
WA
96 MB
データパターン2
WA
86 MB
データパターン3
WA
86 MB