日期:2014-05-16  浏览次数:20367 次

db2 "rownum"
select id from(
   select ROW_NUMBER() OVER() AS a,id
   from tab
)
where a > 0 and a<50