ソースコード
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,
  location_tbl base
on
  d.district_code = l.district_code
where
  l.district_code != '1101'
  and base.district_code = '1101'
order by
  sqrt(power(l.latitude - base.latitude, 2) + power(l.longitude - base.longitude, 2)) desc,
  d.district_code
;
提出情報
提出日時2023/04/16 23:37:01
コンテスト第6回 SQLコンテスト
問題位置情報
受験者suk1yak1
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量92 MB
メッセージ
テストケース(通過数/総数)
3/3
状態
メモリ使用量
データパターン1
AC
92 MB
データパターン2
AC
79 MB
データパターン3
AC
82 MB