Options

Is there a way to get the SET statement clauses of an update statement to indent?

pwo311pwo311 Posts: 5 Bronze 1
Original:
update  dbo.Holiday
set Holiday_Nm = ''
where
    Holiday_ID = -1;

Desired:
update  dbo.Holiday
    set Holiday_Nm = ''
where
    Holiday_ID = -1;

Answers

Sign In or Register to comment.