首页 > 技术文章 > 不同数据库的查询数据比较

kimobolo 2017-06-15 20:04 原文

select * from table1 fetch first 10 rows only :db2
select * from table1 where rownum <= 10: oracle
select top 10 * from table1 :sqlserver
select * from table1 limit 10:mysql


推荐阅读