oracle的 sql 使用union all 连接两个结果集,分别加入order by出错的解决方式
oracle的 sql 使用union all 连接两个结果集,分别加入order by出错的解决方式
--执行下方的union all sql Oracle会报错的
select * from tab_a order by id
union all
select * from tab_b order by age;
再外面再套一层查询。
缺点是数据过多,执行速度可能变慢
--像...
原创
2019-05-05 19:18:14 ·
1440 阅读 ·
0 评论