Hi @Prateek903
do get this error message also with the PL/SQL developer?
I was getting error in PLSQL as well but when I wrote column name as “Osasto” instead of Osasto, it resolved the issue in PLSQL developer. But same solution not working in SQL QUERY TOOL.
If you do select * from view then column Osasto shows with a heading of Osasto? I would expect this error in this scenario if you had a space in the column name but that is not showing here. Difficult to comment further with the info provided.
Hi @Prateek903 ,
Seems like you have used mixed case (Upper case and lower case together) while creating the alias names. If so you will have to wrap the identifiers in double quotes with the precise case you used while creating it (here you will have to mention as "Osasto"), whenever you refer to the object or its attributes. Otherwise the Oracle SQL will not identify such elements.
The ideal way to name elements is to use only Upper case letters while creating them. If so you will no need to use double quotes whenever you refer them in a query.
Thanks,
Anjaleen