Thijs Blaauw
Member
when I have an update statement like this:
and I run the beautifier the statement is formatted like this:
Is it possible to configure the beautifier so that the items in parenthesis stay on their own line?
Thanks,
Thijs
Code:
update mytable
set ( col1
, col2
, col3
, col4
, col5
, col6
, col7
, col8
, col9 ) = (
select col1
, col2
, col3
, col4
, col5
, col6
, col7
, col8
, col9
from myothertable
where x = y
)
Code:
update mytable
set (col1, col2, col3, col4, col5, col6, col7, col8, col9) = (select col1
,col2
,col3
,col4
,col5
,col6
,col7
,col8
,col9
from myothertable
where x = y)
Thanks,
Thijs