ソースコード
with t1_1101 as(
select LATITUDE as x, LONGITUDE as y
from LOCATION_TBL
where DISTRICT_CODE = '1101'
), 
t2 as(
select
DISTRICT_CODE as CODE,
LATITUDE as LAT,
LONGITUDE as LON
,sqrt(pow(LATITUDE - x, 2) + pow(LONGITUDE - y, 2)) as dist
from LOCATION_TBL, t1_1101
where DISTRICT_CODE <> '1101'
)
select
    t2.CODE,
    D.DISTRICT_NAME as NAME,
    t2.LAT,
    t2.LON
from t2
inner join DISTRICT D
on D.DISTRICT_CODE = t2.CODE
order by t2.dist desc, 1
提出情報
提出日時2023/07/26 16:36:01
コンテスト第6回 SQLコンテスト
問題位置情報
受験者katayaaaaaaman
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量83 MB
メッセージ
テストケース(通過数/総数)
3/3
状態
メモリ使用量
データパターン1
AC
77 MB
データパターン2
AC
83 MB
データパターン3
AC
76 MB