ソースコード
WITH additem as(
select i.item_code as CODE,
i.item_name as NAME,
case
when h.USER_UPDATE_DATETIME is null then "ADDED"
when h.USER_UPDATE_DATETIME = i.USER_UPDATE_DATETIME then "hoge"
when h.USER_UPDATE_DATETIME < i.USER_UPDATE_DATETIME then "UPDATED"
end as COMP_RSLT
from ITEM i left outer join ITEM_HISTORY h on i.item_name = h.item_name
),
delitem as(
select h.item_code as CODE,
h.item_name as NAME,
case
when i.USER_UPDATE_DATETIME is null then "DELETED"
else "hoge"
end as COMP_RSLT
from ITEM i right outer join ITEM_HISTORY h on i.item_name = h.item_name
)
select * from additem where COMP_RSLT != "hoge"
union select * from delitem where COMP_RSLT != "hoge"
order by CODE
提出情報
提出日時2024/06/10 23:21:35
コンテスト第12回 SQLコンテスト
問題データ操作履歴
受験者nagisa5101
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量84 MB
メッセージ
テストケース(通過数/総数)
0/3
状態
メモリ使用量
データパターン1
WA
83 MB
データパターン2
WA
84 MB
データパターン3
WA
83 MB