Can you help me find the right combination of formatter options to align all the fields for an INSERT statement?
This is how it is being formatted:
INSERT INTO tmytbl (col1
,col2
,col3
,col4
,col5
,col6)
SELECT mycol
,yourcol
,lotsdollars
,somedollars
,mystate
,enddate
FROM yourtable
WHERE empid = 186546;
This is how I would like it formatted:
INSERT INTO tmytbl
( col1
,col2
,col3
,col4
,col5
,col6
)
SELECT mycol
,yourcol
,lotsdollars
,somedollars
,mystate
,enddate
FROM yourtable
WHERE empid = 186546;