数据库读取前几条记录的SQL语句大全

时间:2021-04-16

  取前10条记录的sql语句写法:

  1、access:

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

  2、db2:

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

  3、mysql:

  select * from table1 where 1=1 limit 10

  4、sql server:

  读取前10条:select top (10) * from table1 where 1=1

  读取后10条:select top (10) * from table1 order by id desc

  5、oracle:

  select * from table1 where rownum<=10

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章