oracle sql 查询前十条数据

-- oracle sql 查询前十条数据
select * from b2c_code where rownum <= '10';
-- sql server 查询前十条数据
select top 10 * from b2c_code;
原文地址:https://www.cnblogs.com/pumushan/p/4661671.html