sqlserver语法
程序员文章站
2024-02-22 23:14:40
...
1、不支持limit ,用top
如果要查询上述结果中前6条记录,则相应的SQL语句是:
select top 6 id from tablename
2、如果要查询上述结果中第 7 条到第 9 条记录,则相应的SQL语句是:
select top 3 id from tablename
where id not in (
select top 6 id from tablename
)
3、取第m条到第n条记录:
select top (n-m+1) id from tablename
where id not in (
select top m-1 id from tablename
)