欢迎光临
我们一直在努力

在数据库里取前10条数据_数据库技巧

建站超值云服务器,限时71元/月

access:
select top (10) * from table1 where 1=1


db2:
select column from table where 1=1 fetch first 10 rows only


mysql:
select * from table1 where 1=1 limit 10


sql server:
读取前10条:select top (10) * from table1 where 1=1
读取后10条:select top (10) * from table1 order by id desc
在sqlserver里面,如何读取按照某个排序,第5到10这五个记录
select top 6 * from table where id not in(select top 4 id from table)


oracle:
select * from table1 where rownum<=10

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 在数据库里取前10条数据_数据库技巧
分享到: 更多 (0)