您的位置:首页 > 数据库 > Oracle

oracle分页查询

2007-08-31 11:22 218 查看
查询sql:

select * from (
  select temp_table.*,rownum as temp_rownum from
    (select * from table_name) temp_table where rownum<(start+size)
)where temp_rownum>=start
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  oracle table sql