select * from ( select column from table order by column ) where rownum <= 10 ;
select column from table where rownum <= 10 order by column;
ってやってもうまくいかないのは、rownumしてからorder byしているから。
select * from ( select column from table order by column ) where rownum <= 10 ;
select column from table where rownum <= 10 order by column;
ってやってもうまくいかないのは、rownumしてからorder byしているから。