首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > 其他数据库 >

oracle数据库分页话语

2013-12-15 
oracle数据库分页语句1、select t1.* from ( select t.* from test t where rownum4 order by id desc) t1

oracle数据库分页语句

1、select t1.* from ( select t.* from test t where rownum<4 order by id desc) t1 where rownum<2 order by id asc2、select * from ( select t.*,rownum r from test t where rownum<4 ) where r>1;

热点排行