[求助]SQL语句的问题
能不能查询记录的时候自己指定从第几条记录开始查旬呀~~可以的话,SQL语句怎么写~
表:fileTypeManager
PK:fileId (int型)
select * from fileTypeManager where fileId not in (select top n-1 fileId from fileTypeManager order by fileId)
这个就是从第n条记录开始.
版主,这样写不行呀,是不是数据库表里字段里一定要有一个是INT型的字段才行呀
我的表名是DIAN
字段有ID(int 自动增添型)
d_name(char型)
我把SQL语写成select * from dianying where id not in (select top 3-1 id from dianying order by id)这个,查询的结果是全部的记录,没有从第3条记录开始查询的嘛~是不是我那里有错呀~~
谢谢~