ソースコード
select
  d.district_code as CODE,
  d.district_name as NAME,
  l.latitude as LAT,
  l.longitude as LON
from
  district d
join
  location_tbl l
on
  d.district_code = l.district_code
where
  l.district_code != '1101'
order by
  (select
    sqrt(power(l.latitude - base.latitude, 2) + power(l.longitude - base.longitude, 2))
  from
    location_tbl base
  where
    base.district_code = '1101') desc,
  d.district_code
;
提出情報
提出日時2023/04/16 23:27:47
コンテスト第6回 SQLコンテスト
問題位置情報
受験者suk1yak1
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量91 MB
メッセージ
テストケース(通過数/総数)
3/3
状態
メモリ使用量
データパターン1
AC
76 MB
データパターン2
AC
91 MB
データパターン3
AC
81 MB