コンテストの制限時間が終了しました。
以降も提出を行うことができますが、順位集計には反映されません。
以降も提出を行うことができますが、順位集計には反映されません。
ソースコード
select
*
from
(
select
coalesce(a.item_code,b.item_code) as CODE,
coalesce(a.item_name,b.item_name) as NAME,
case
when a.item_code is not null and b.item_code is null then
'ADDED'
when b.item_code is not null and a.item_code is null then
'DELETE'
when a.item_code = b.item_code and 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
) a
where a.COMP_RSLT is not null
order by
CODE desc
;
提出情報
提出日時 | 2024/04/24 15:30:57 |
コンテスト | 第12回 SQLコンテスト |
問題 | データ操作履歴 |
受験者 | masashi_sql |
状態 (詳細) | WA (Wrong Answer: 誤答) |
メモリ使用量 | 85 MB |
メッセージ
テストケース(通過数/総数)
1/3
状態
メモリ使用量
データパターン1
WA
84 MB
データパターン2
AC
85 MB
データパターン3
WA
84 MB