본문 바로가기

Dev Story/dev

[oracle] ORA-00960: ambiguous column naming in select list

Cause: A column name in the order-by list matches more than one select list column.

 

- SELECT ORDER BY를 하면 발생

- SELECT 하려는 필드가 중복되어있음

- ORDER BY를 할려고 하는데 컬럼이 하나가 아니라 여러개라 발생되는 오류

 

 

Action: Remove the duplicate column naming in the select list.

 

- 중복된 필드를 제거

 

 

 

 

 

http://ora-00096.ora-code.com/