ソースコード

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