ソースコード
select
    district_code code,
    district_name name,
    total_amt total
from
    population
where 
    total_amt >= 100000
    and 
    district_name like '%東%'
order by
    total
desc,
    code;
提出情報
提出日時2023/05/29 13:23:47
コンテスト第2回 SQLコンテスト
問題曖昧検索
受験者Amac
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量82 MB
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
82 MB
データパターン2
WA
79 MB