SQLServer:select top 10 * from mytable; Oracle: select * from mytable where rownum <=10; Mysql:select * from mytable limit 0,10; PostgreSQL:select * from mytable limit 0,10;(貌似跟Mysql一样的) 相关文章: 2021-10-07 2022-01-09 2022-12-23 2022-12-23 2021-12-26 2021-08-28 2021-07-08 2022-02-21