What I'm trying to do is that I don't want to use double quotes("") when I use sql statements. For ex.:
select sysdate "System_Date" from dual;
I want to use instead:
select sysdate System_Date from dual;
and the result shold be as I wroted, but Oracle is changed to capital letters if I'm not using double quotes.

Please help!!!