Quantcast
Channel: Rss Feed - SSMSBoost Add-in discussion board - Forum
Viewing all articles
Browse latest Browse all 825

Formating and indentation

$
0
0
The "old fashioned formatting" generates the following:

Code:

SELECT ColumnA
	, ColumnB
	, ColumnC
FROM SampleTable
WHERE ColumnA = 'Some Value'
ORDER BY CloumnB


I want formatting to be like:

Code:

SELECT 
	ColumnA
	, ColumnB
	, ColumnC
FROM 
	SampleTable
WHERE 
	ColumnA = 'Some Value'
ORDER BY 
	CloumnB


How do I go about fixing this?

Thanks
Go to last post

Viewing all articles
Browse latest Browse all 825

Trending Articles