私の質問は:
select a from b where c in (
select d from e where f in (
select f from e where d=100)
and e!=100 group by e order by count(e) desc
)
)
このクエリは私が望む結果を出力しますが、このサブクエリで並べ替えたい
select d from e where f in (
select f from e where d=100)
and e!=100 group by e order by count(f) desc
基本的にcount(f)で注文したい
メインクエリがサブクエリからIDを取得するが、サブクエリに従ってそれらを並べ替えないようにするにはどうすればよいですか?