ORA-00965 : column aliases not allowed for ‘*’
Cause : An alias was used with the return-all-columns function (*) in the
SELECT list. For example:
SELECT * COL_ALIAS FROM EMP;
Action: Either specify individual columns or do not specify an alias with a “*”.
Popularity: 2% [?]


