ソースコード
 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
    ,latitude as LAT
    ,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
    l.latitude * l.latitude + l.longitude * l.longitude desc
    ,1
提出情報
提出日時2023/06/21 17:51:18
コンテスト第6回 SQLコンテスト
問題位置情報
受験者takahirostone
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量86 MB
メッセージ
テストケース(通過数/総数)
0/3
状態
メモリ使用量
データパターン1
WA
80 MB
データパターン2
WA
86 MB
データパターン3
WA
79 MB