Options

trying to stop indention of AND/OR statements

rtowne@smarsh.comrtowne@smarsh.com Posts: 12
edited August 11, 2008 11:41AM in SQL Refactor Previous Versions
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.