Oracle中查询
select * from table where rownum<=10;
DB2中查询
select * from table fetch first 10 rows only;
MySql中查询
select * from table limit 10;
时间: 2024-10-13 13:10:42
Oracle中查询
select * from table where rownum<=10;
DB2中查询
select * from table fetch first 10 rows only;
MySql中查询
select * from table limit 10;