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.