select
*
from
(
tablename
order
by
createdate
desc
) aaa
-- 按创建时间倒排序
where rownum <= 1000;
where
rownum <= 1000;