摘要:
假设有表TableA,字段为FieldA, FieldB,查询第10到20条记录,SQL如下: select * from ( select row_number() over(order by FieldA) as RowNum, * from TableA ) t where t.RowNum betwe... 阅读全文
posted @ 2007-07-23 16:33 Clark Zheng 阅读(2616) 评论(13) 推荐(0) 编辑