码迷,mamicode.com
首页 > 数据库 > 详细

sql 查询前十条数据

时间:2015-07-20 18:39:53      阅读:222      评论:0      收藏:0      [点我收藏+]

标签:

-- oracle sql 查询前十条数据
select * from b2c_code where rownum <= 10;
-- sql server 查询前十条数据
select top 10 * from b2c_code;

 

sql 查询前十条数据

标签:

原文地址:http://www.cnblogs.com/pumushan/p/4661671.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!