posted @ 2006-03-31 13:02 鹏翔.NET 技术 阅读(499) 评论(4) 编辑
2006年3月31日 #
2006年3月10日 #
SQL查找第n条记录的方法:
select top 1 * from table where id not in (select top n-1 id from table) temptable0
SQL查找第n条开始的m条记录的方法:
select top m * from table where id not in (select top n-1 id from table) temptable0)
(注:表中必须有一个唯一值字段才可适用此方法。)
select top 1 * from table where id not in (select top n-1 id from table) temptable0
SQL查找第n条开始的m条记录的方法:
select top m * from table where id not in (select top n-1 id from table) temptable0)
(注:表中必须有一个唯一值字段才可适用此方法。)
posted @ 2006-03-10 09:24 鹏翔.NET 技术 阅读(2434) 评论(1) 编辑
