SQL查找某一条记录的方法
更新时间:2007年04月29日 00:00:00 作者:
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)
(注:表中必须有一个唯一值字段才可适用此方法。)
相关文章
win7系统安装SQLServer2000的详细步骤(图文)
这篇文章主要介绍了win7系统安装SQLServer2000的详细步骤,里面有一些需要注意的事项,大家可以参考下2014-07-07DBCC CHECKIDENT 重置数据库标识列从某一数值开始
DBCC CHECKIDENT 重置数据库标识列从某一数值开始2009-10-10
最新评论