首页 > 开发 > 综合 > 正文

在数据库里取前10条数据

2024-07-21 02:31:55
字体:
来源:转载
供稿:网友

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


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表