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