Hi,
When i am typing a SQL statement , when using alias , when i type alias and dot, PLSQLD drops down and shows available columns where i can select from. It seems sometimes the columns selected appear enclosed in double quotes. Technically this is correct as some views were created this way, what i want to know if there is a way to not use double quotes; the drop down dont use double quotes so i like the result to not include double quotes too.
eg:- PLSQLD generated code:
Select t."order_no" from view1 t
I wish it created as below:
Select t.order_no from view1 t
Thanks in advance
Sak
When i am typing a SQL statement , when using alias , when i type alias and dot, PLSQLD drops down and shows available columns where i can select from. It seems sometimes the columns selected appear enclosed in double quotes. Technically this is correct as some views were created this way, what i want to know if there is a way to not use double quotes; the drop down dont use double quotes so i like the result to not include double quotes too.
eg:- PLSQLD generated code:
Select t."order_no" from view1 t
I wish it created as below:
Select t.order_no from view1 t
Thanks in advance
Sak