コンテストの制限時間が終了しました。
以降も提出を行うことができますが、順位集計には反映されません。
以降も提出を行うことができますが、順位集計には反映されません。
ソースコード
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