18:21:44 jlanzpa817>select * from (
18:21:56   2  select f1 ,count(*) coun from table1 
18:21:56   3  group by f1  order by coun desc
18:21:56   4  ) where rownum < 10;SU       COUN
-- ----------
T           3
A           1已用时间:  00: 00: 00.20
18:21:57 jlanzpa817>