Skip to Main Content

SQL Developer

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

Auto expand SQL query

User_H8DIZJul 25 2022

When you type select * from Table; in a worksheet then there is an autoexpand function which expand the query to
select field1,
field2,
field3
from Table;
Which is a very handy functionality but...
I prefer the syntax
select
field1
, field2
, field3
from Table;
Which is more handy when you what to dissable and or rename the output fields.
Is possible to implement this other format, preferably with a configuration setting so that the user can select which format he/she prefers
Regards
Jos

Comments

Post Details

Added on Jul 25 2022
3 comments
637 views