ソースコード
with h1101 as(
    SELECT
        LATITUDE as la,LONGITUDE as lo
    FROM
        LOCATION_TBL
    WHERE
       DISTRICT_CODE = '1101'
)
SELECT
    t2.DISTRICT_CODE as CODE
    ,DISTRICT_NAME as NAME
    ,LATITUDE as LAT
    ,LONGITUDE as LON
from
    h1101 t1
cross join LOCATION_TBL t2
inner join DISTRICT t3 on t2.DISTRICT_CODE = t3.DISTRICT_CODE
where
    t2.DISTRICT_CODE <> '1101'
order by
        ((LATITUDE - la)*(LATITUDE - la) + (LONGITUDE - lo)*(LONGITUDE - lo)) DESC
        ,t2.DISTRICT_CODE ASC
提出情報
提出日時2023/04/14 21:53:11
コンテスト第6回 SQLコンテスト
問題位置情報
受験者tetoteto2
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量85 MB
メッセージ
テストケース(通過数/総数)
3/3
状態
メモリ使用量
データパターン1
AC
77 MB
データパターン2
AC
85 MB
データパターン3
AC
84 MB