Hi,
I really like the beautifier in PL/SQL Developer but in DMLs I would like the comparators in WHERE clause to allign. Is there som option to do this? If not I would like there to be one.
Oracle SQL Developer is getting better all the time and it's new and improved formatter does this.
I get this today:
but I would like something like this:
Regards
Stian
I really like the beautifier in PL/SQL Developer but in DMLs I would like the comparators in WHERE clause to allign. Is there som option to do this? If not I would like there to be one.
Oracle SQL Developer is getting better all the time and it's new and improved formatter does this.
I get this today:
Code:
SELECT 'VARIABLE1'
,'VARIABLE123'
,'VARIABLE_ABC'
,1
,10
FROM dual
WHERE 1 = 1
AND 10 = 10
AND 'VARIABLE1' = 'VARIABLE1'
AND 'VAR_2' NOT LIKE 'VAR_3%'
AND 'VAR_2x' LIKE 'VAR_2%';
but I would like something like this:
Code:
SELECT 'VARIABLE1'
,'VARIABLE123'
,'VARIABLE_ABC'
,1
,10
FROM dual
WHERE 1 = 1
AND 10 = 10
AND 'VARIABLE1' = 'VARIABLE1'
AND 'VAR_2' NOT LIKE 'VAR_3%'
AND 'VAR_2x' LIKE 'VAR_2%';
Regards
Stian