ソースコード
-- https://topsic-contest.jp/contests/contest002/problems/contest002-2

select
    DISTRICT_CODE as CODE, 
    DISTRICT_NAME as NAME, 
    total_amt as TOTAL
from
    population
where total_amt >= 100000
and DISTRICT_NAME like '%東%'
order by TOTAL desc, DISTRICT_CODE asc
;
提出情報
提出日時2022/09/21 16:55:40
コンテスト第2回 SQLコンテスト
問題曖昧検索
受験者kokiando
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量100 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
82 MB
データパターン2
AC
100 MB