ソースコード
select
t1.checkup_date as CK_DATE,
t1.member_code as CODE,
t3.last_name || t3.first_name as NAME,
round(t1.weight -t2.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
提出情報
提出日時2024/06/24 10:43:36
コンテスト第13回 SQLコンテスト
問題体重差分
受験者sakichiii
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量84 MB
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
84 MB
データパターン2
WA
84 MB