ソースコード
with
    a as (
        select
            latitude as lat_1101
            ,longitude as lon_1101
        from
            location_tbl
        where
            district_code = '1101'
    )
select
    l.district_code as CODE
    ,d.district_name as NAME
    ,l.latitude as LAT
    ,l.longitude as LON
from
    location_tbl l
cross join
    a
left join
    district d
on
    l.district_code = d.district_code
where
    l.district_code != '1101'
order by
    (pow(l.latitude - a.lat_1101, 2) + pow(l.longitude - a.lon_1101, 2)) desc
    ,1 asc
提出情報
提出日時2023/06/21 18:23:21
コンテスト第6回 SQLコンテスト
問題位置情報
受験者takahirostone
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量79 MB
メッセージ
テストケース(通過数/総数)
2/3
状態
メモリ使用量
データパターン1
AC
78 MB
データパターン2
WA
79 MB
データパターン3
AC
79 MB