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

Possible to left align the AND predicate?

Is there a way edit the automatic formatting of the AND predicate to left align under the WHERE i.e
SELECT	TOP (50) 
		o.name
FROM	master.sys.objects o
WHERE	o.object_id = 3
AND		o.name LIKE '%sys'
and not
SELECT TOP ( 50 )
		o.name
FROM	master.sys.objects o
WHERE	o.object_id = 3
		AND o.name LIKE '%sys'
?
Pixelated_1
0

Comments

1 comment

  • David Priddle
    Hi Pixelated_1,

    With the current system, unfortunately this isn't possible.

    We're currently working on improving the formatting system and this is something that it will support. If you find any more areas with the current formatting system where we can improve, please put them into the formatting survey here.

    Best regards,

    David
    David Priddle
    0

Add comment

Please sign in to leave a comment.