Skip to content
Tako Lee edited this page Feb 12, 2014 · 12 revisions
  • First table source item in the same line as FROM keyword
SELECT TerritoryID, Name
FROM Sales.SalesTerritory
ORDER BY TerritoryID ;
  • First table source item in a new line, indent from 1 to n.
SELECT TerritoryID, Name
FROM 
  Sales.SalesTerritory
ORDER BY TerritoryID ;

Clone this wiki locally