ソースコード
select 
  ifnull(ITEM.ITEM_CODE, hist.ITEM_CODE) as CODE,
  ifnull(ITEM.ITEM_NAME, hist.ITEM_NAME) as NAME,
  case 
    when ITEM.ITEM_CODE is null then 'DELETED' 
    when hist.ITEM_CODE is null then 'ADDED' 
    else 'UPDATED' 
  end as COMP_RSLT
from ITEM item
full outer join ITEM_HISTORY hist 
on   item.ITEM_CODE = hist.ITEM_CODE
where item.ITEM_CODE is null 
or    hist.ITEM_CODE is null
or    item.USER_UPDATE_DATETIME != hist.USER_UPDATE_DATETIME
order by 1 desc
;
提出情報
提出日時2024/04/28 16:59:13
コンテスト第12回 SQLコンテスト
問題データ操作履歴
受験者yunyun8686
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量85 MB
メッセージ
テストケース(通過数/総数)
3/3
状態
メモリ使用量
データパターン1
AC
85 MB
データパターン2
AC
84 MB
データパターン3
AC
84 MB