数据库查询前10条数据

Oracle中查询
 
select * from table where rownum<=10;
 
DB2中查询
 
select * from table fetch first 10 rows only;
 
MySql中查询
 
select *  from table limit 10;
posted @ 2017-07-12 23:03  疯狂的蜗牛仔  阅读(6244)  评论(0编辑  收藏  举报