Oracle database is case insensitive and thus if I put any alias also the column name is always in capital letters. For e.g. If I run the following query:
Select ID as Id, AGE as Age, NAME as Name from Employee;
The result set columns would be like as follows:
ID | AGE | NAME
----------------
but I want them to be like as follows:
Id | Age | Name
-----------------
Is there any work around to achieve the same?