首页 > 代码库 > 数据库查询前10条数据

数据库查询前10条数据

Oracle中查询
 
select * from table where rownum<=10;
 
DB2中查询
 
select * from table fetch first 10 rows only;
 
MySql中查询
 
select *  from table limit 10;

数据库查询前10条数据