有张表的数据量太大,在做了更新之后想看看更新的结果,只看最新的前几行数据。
select * from(select * from tablename order by column desc) xx where rownum <= 1000;