ソースコード
with t as (
    select latitude as l0, longitude as l1 from LOCATION_TBL where DISTRICT_CODE='1101'
) 
-- select * from t
select district_code as CODE,
district_name as NAME,
latitude as LAT,
longitude as LON
from (
    select * from LOCATION_TBL as l
    inner join DISTRICT as d on d.DISTRICT_CODE=l.DISTRICT_CODE
    cross join t
    where l.district_code!='1101'
) as z
order by (latitude-l0)*(latitude-l0)+(longitude-l1)*(longitude-l1) desc,1
提出情報
提出日時2023/04/15 21:53:09
コンテスト第6回 SQLコンテスト
問題位置情報
受験者tabr
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量79 MB
メッセージ
テストケース(通過数/総数)
3/3
状態
メモリ使用量
データパターン1
AC
76 MB
データパターン2
AC
79 MB
データパターン3
AC
76 MB