ソースコード
with t0 as 
(
    select 
        district_code as code, 
        district_name as name, 
        total_amt as total
        from population
        where total>=100000 and (name like '%東%')
)
select * from t0 order by total desc, code  
提出情報
提出日時2022/09/22 00:54:23
コンテスト第2回 SQLコンテスト
問題曖昧検索
受験者otooo
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量100 MB
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
86 MB
データパターン2
WA
100 MB