ソースコード
select
    DISTRICT_CODE as CODE,
    DISTRICT_NAME as NAME,
    LATITUDE as LAT,
    LONGITUDE as LON
from
    location_tbl
order by
    ACOS(COS(RADIANS((select lat from location_tbl where district_code = "1101"))) * COS(RADIANS(LAT)) * COS(RADIANS(LON) - RADIANS((select lon from location_tbl where district_code = "1101")))+ SIN(RADIANS((select lat from location_tbl where district_code = "1101"))) * SIN(RADIANS(LAT)) desc,
    code asc;
提出情報
提出日時2023/04/17 11:11:58
コンテスト第6回 SQLコンテスト
問題位置情報
受験者UT
状態 (詳細)RE
(Runtime Error: 実行時エラー)
メモリ使用量94 MB
メッセージ
SQLITE_ERROR: near "desc": syntax error
テストケース(通過数/総数)
0/3
状態
メモリ使用量
データパターン1
RE
94 MB
データパターン2
RE
87 MB
データパターン3
RE
93 MB