提取10到20的数据纪录的SQL语句怎么写

就是提取其中一部份纪录,用游标吗?
2024年11月29日 16:46
有4个网友回答
网友(1):

select *
from <列名>
between 10 and 20;

网友(2):

select top 20 * from table where id not in (select top 10 id from table)

网友(3):

select top 20 id from table where id not in (select top 10 id from table)

网友(4):

select top 20 id from table where id not in (select top 9 id from table)