コンテストの制限時間が終了しました。
以降も提出を行うことができますが、順位集計には反映されません。
以降も提出を行うことができますが、順位集計には反映されません。
ソースコード
select
t1.checkup_date as CK_DATE,
t1.member_code as CODE,
t3.last_name || t3.first_name as NAME,
round(t2.weight -t1.weight,1)as CHG_WT
from health_checkup as t1
left join health_checkup as t2
on t1.member_code = t2.member_code
and t1.checkup_date < t2.checkup_date
left join member_mst as t3
on t1.member_code = t3.member_code
where chg_wt is not null
and chg_wt >=5.0 or chg_wt <=-5.0
order by chg_wt desc,code desc
提出情報
提出日時 | 2024/06/24 10:48:12 |
コンテスト | 第13回 SQLコンテスト |
問題 | 体重差分 |
受験者 | sakichiii |
状態 (詳細) | WA (Wrong Answer: 誤答) |
メモリ使用量 | 84 MB |
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
84 MB
データパターン2
WA
84 MB