How can we help you today? How can we help you today?

Formatting of an UPDATE Statement

Is there a way to get the fields of an UPDATE statement to line up like they do with a SELECT statement?
e.g.
Current
UPDATE xxx
SET      Field_1 = 'Something'
            ,Short = 'Something'
            ,LongName = 'Something'

Desired
UPDATE xxx
SET      Field_1       = 'Something'
            ,Short          = 'Something'
            ,LongName = 'Something'
Lauren
0

Comments

1 comment

Add comment

Please sign in to leave a comment.