ソースコード
select
    coalesce(i.item_code,ih.item_code) as CODE
    , coalesce(i.item_name,ih.item_name) as NAME
    , case
        when ih.user_update_datetime is null then 'ADDED'
        when i.user_update_datetime is null then 'DELETED'
        when i.user_update_datetime<>ih.user_update_datetime then 'UPDATED'
      end as COMP_RSLT
from item i
full outer join item_history ih on i.item_code=ih.item_code
where i.user_update_datetime is not ih.user_update_datetime
order by code desc;
提出情報
提出日時2024/05/16 13:09:19
コンテスト第12回 SQLコンテスト
問題データ操作履歴
受験者sjty9561
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量84 MB
メッセージ
テストケース(通過数/総数)
3/3
状態
メモリ使用量
データパターン1
AC
83 MB
データパターン2
AC
83 MB
データパターン3
AC
84 MB