select top 10 from tb_Article where ClassId=110 and isfrist=true and Id not in (select top 5 id from tb_Article Order By Id Desc) Order By Id Desc
先取出前五条 除去
写得不对, 但是意思 就是这么个意思, 很久没写了会忘
MYSQL
查询语句+LIMIT+10 取查询记录的前十条。
如:SELECT FROM Test LIMIT 10
查询语句+LIMIT+2,10 取查询语句,从第二条记录,取十条记录。
如:SELECT FROM Test LIMIT 2,10
select name sex from piva_orders a,piva_orders b where aname!=bname limit 10;
朋友,这样试试。
select channelid as 频道,count(channelid) as 小计 from pe_soft where channelid = '2' group by channelid order by 2
select inputer as 录入,channelid as 频道,count(channelid) as 小计 from group by inputer,channelid order by 3
select top 10 inputer as 录入,count(channelid) as 小计 from pe_soft where channelid = '2' group by inputer order by 2
以上就是关于access数据库读取前10条数据如何 *** 作全部的内容,包括:access数据库读取前10条数据如何 *** 作、常用几种数据库,取前10条记录的sql语句写法、查询数据库中前十条不重复的用户信息,只取姓名和性别等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)