MYSQL
查询语句+LIMIT+10 取查询记录的前十条。
如:SELECT FROM Test LIMIT 10
查询语句+LIMIT+2,10 取查询语句,从第二条记录,取十条记录。
如:SELECT FROM Test LIMIT 2,10
通过rownum小于等于10获取前10条记录
示例:
SELECT FROM 表名 WHERE ROWNUM<=10补充:
ROWNUM是一个序列,是oracle数据库从数据文件或缓冲区中读取数据的顺序。它取得第一条记录则rownum值为1,第二条为2,依次类推。
小于等于10,则就会只取前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
以上就是关于常用几种数据库,取前10条记录的sql语句写法全部的内容,包括:常用几种数据库,取前10条记录的sql语句写法、查询oracle数据时的前10条的SQL语句、数据库查询语句问题,查询数量前十的信息数,进行排序等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)