Beautifier request

ScottMattes

Member³
I may have asked for this already, if so I apologize.

given the following:

Code:
INSERT INTO Tab
Fields(F1,F2, F3)
VALUES('a',1,sysdate);

I would like to see the following after running the Beautifier

Code:
INSERT INTO Tab
FIELDS
  (F1,
   F2,
   F3)
VALUES
  ('a',
   1,
   SYSDATE);

instead of this

Code:
INSERT INTO Tab Fields
  (F1,
   F2,
   F3)
VALUES
  ('a',
   1,
   SYSDATE);
 
Back
Top