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!

Sql Developer Formatting Setting

Orcl ApexApr 24 2017 — edited Apr 24 2017

Hi All,

While formatting in SQL developer my join setting are not coming properly for e.g.

SELECT * FROM

a, b

WHERE

a.c1 = b.c2

AND

a.c2 = b.c2;

It's should come like

AND a.c2 = b.c2

Case 2 >

SELECT * FROM

a

JOIN b ON

(a.c1 = b.c2)

AND

(a.c2 = b.c2);

It should be >

JOIN b

ON (a.c1 = b.c2)

AND (a.c2 = b.c2);

Please suggest what to change in formatter options.

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on May 22 2017
Added on Apr 24 2017
3 comments
1,529 views