Access开发培训
网站公告
·Access专家课堂QQ群号:151711184    ·Access快速开发平台下载地址及教程    ·欢迎加入Access专家课堂微信群!    ·如何快速搜索本站文章|示例|资料    
您的位置: 首页 > 技术文章 > Access数据库-模块/函数/VBA

access读取中间几条记录的SQL语句

时 间:2013-11-13 08:18:08
作 者:宏鹏   ID:21115  城市:上海
摘 要:access读取中间几条记录的SQL语句
正 文:

从表中取出第 M 条到第 N 条的记录(如N=M+10)


select top N-M+1 * from [tableName] where (id not in (select top M-1 id from [tableName]))

select top N-M+1 * from [tableName] as a where not exists (select * from (select top M-1 * from [tableName] order by id) b where b.id=a.id ) order by id

注意
    上述语句不能取从第1条到第N条的数据(即M=1时失效),因为select top N …… 中N必须从1开始(参考:数据库读取前几条记录的SQL语句大全)
    此问题的解决办法:要取第1到N条的记录,需要使用select top N …… 解决。 


     取数据库第20到第30条中间的十条记录的sql语句
select top 10 * from [tableName] where id not in (select top 20 id from [tableName] order by id)

删除前10行

delete from [tableName] where id in(select top 10 id from [tableName])

删除10-20条

delete from [tableName] where id in(select top 20 id from [tableName]and id not in(select top 10 id from [tableName])


Access软件网官方交流QQ群 (群号:483923997)       Access源码网店

常见问答:

技术分类:

相关资源:

专栏作家

关于我们 | 服务条款 | 在线投稿 | 友情链接 | 网站统计 | 网站帮助