oracle ora-00918:未定义明确列错误

前端之家收集整理的这篇文章主要介绍了oracle ora-00918:未定义明确列错误前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

表emp(empno,empname,deptno)

表dept(deptno,dname,loc)

若用以下语句进行查询,则会报下图的错误

select d.* from (select * from emp,dept where emp.deptno = dept.deptno) d;

改为语句则能正确查询,原因是emp表与dept表存在重复的字段名

select d.*
  from (select emp.empno,emp.empname,emp.deptno empdetno,dept.*
          from emp,dept
         where emp.deptno = dept.deptno) d;
原文链接:https://www.f2er.com/oracle/206190.html

猜你在找的Oracle相关文章