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