摘要:
SQL查找第n条记录的方法:select top 1 * from table where id not in (select top n-1 id from table) temptable0SQL查找第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 技术
阅读(3521)
评论(1)
推荐(0)
浙公网安备 33010602011771号