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