コンテストの制限時間が終了しました。
以降も提出を行うことができますが、順位集計には反映されません。
以降も提出を行うことができますが、順位集計には反映されません。
ソースコード
with ad as (
select ITEM_CODE AS CODE
,ITEM_NAME AS NAME
,"ADDED" AS COMP_RSLT
from item i
where not exists (
select * from item_history ih
where i.item_code = ih.item_code))
,upd as (
select ITEM_CODE AS CODE
,ITEM_NAME AS NAME
, "UPDATED" AS COMP_RSLT
from item i
where exists (
select * from item_history ih
where i.item_code = ih.item_code
and i.USER_UPDATE_DATETIME <> ih.USER_UPDATE_DATETIME))
,del as (
select ITEM_CODE AS CODE
,ITEM_NAME AS NAME
,"DELETED" AS COMP_RSLT
from item ih
where not exists (
select * from item_history i
where i.item_code = ih.item_code))
select * from (
select *
from ad
union
select *
from upd
union
select *
from del
)
order by code desc
提出情報
提出日時 | 2024/04/22 09:44:49 |
コンテスト | 第12回 SQLコンテスト |
問題 | データ操作履歴 |
受験者 | yambe8 |
状態 (詳細) | WA (Wrong Answer: 誤答) |
メモリ使用量 | 84 MB |
メッセージ
テストケース(通過数/総数)
0/3
状態
メモリ使用量
データパターン1
WA
84 MB
データパターン2
WA
84 MB
データパターン3
WA
84 MB