首页 ->
SQL Server ->
正文
Sql server 2005带来的分页便利
来源:网络摘录 日期:2008-09-14 23:15 点击:0
select threadid from
(
select threadid, ROW_NUMBER() OVER (order by stickydate) as Pos from cs_threads
) as T
where T.Pos > 100000 and T.Pos < 100030
====================================..
您的访问量超出了系统限制,文章内容已被隐藏。