trying to stop indention of AND/OR statements

I can't figure out either through the layout in SQL Prompt or SQL Refactor how to stop indention of AND/OR Statements:

What is showing:
select  *
from    dbo.someTable am
where   someColumn1 = 1
		and someColumn2 = 0

What I want to show:
select  *
from    dbo.someTable am
where   someColumn1 = 1
and		someColumn2 = 0

Thank you for any suggestions ahead of time.

Robert

Comments

Sign In or Register to comment.