摘要:
select * from
(
select rownum as sn,a.* from
(
select table_name,num_rows
from user_tables
where num_rows is not null
order by num_rows desc
) a
) b
where b.sn<11; 阅读全文
posted @ 2022-06-22 18:31
逆火狂飙
阅读(643)
评论(0)
推荐(0)