nc's world:

天行健,君子以自强不息
地势坤,君子以厚德载物

博客园 首页 新随笔 联系 订阅 管理

2006年9月26日 #

摘要: declare @pagesize int 页数 declare @pagenow int 页面 set @pagesize=10 set @pagenow=3 select * from (select ROW_NUMBER() over(order by cid) as rownum, * from Citys) as ttt where rownum>((@pagenow-1)*@... 阅读全文
posted @ 2006-09-26 11:55 nicesnow 阅读(216) 评论(0) 推荐(0) 编辑