oracle 使用union提示ORA-00907:缺少右括号

在使用union的时候提示:ORA-00907:缺少右括号

此原因是因为在union的左边和右边都有order by,因此需要去掉一边的order by,保留一个即可。

例如:

select * from 

(

 select id,name from emp

order by name

union

 select id,name from emp


)

或者:

 

select * from 

(

 select id,name from emp


union

 select id,name from emp


order by name

posted on 2021-01-20 10:40  云淡风轻博客  阅读(1407)  评论(0编辑  收藏  举报