问题描述
- oracle left join 后怎么取前10条数据?
-
如题
oracle left join 后怎么取前10条数据?
求大神帮帮忙,谢谢了
解决方案
where rownum <= 10
解决方案二:
ORACLE取前10条数据
Oracle获取前10条数据
Oracle查询前10条数据
解决方案三:
直接select top10 * from a表 left join b表 on ……;
解决方案四:
select * from (select ROWNUM as num,A.* from (select * from test) A where rownum <= 40) where num >= 20 仅供参考
时间: 2024-11-01 13:39:28