摘要: //获取31-40行 (1)select top 10 * from A where Id not in( select top 30 Id from A order by Id asc ) order by id asc; (2)select top 10 * from A where Id > ( select max( id ) from ( select top 30 id from A ... 阅读全文
posted @ 2008-03-29 11:01 朱胜 阅读(546) 评论(0) 推荐(0)
摘要: using System; using System.Collections; using System.Configuration; using System.Data; using System.Data.SqlClient; using System.Linq; using System.Web; using System.Web.Security; using System.Web.UI;... 阅读全文
posted @ 2008-03-29 10:43 朱胜 阅读(499) 评论(0) 推荐(0)