Aliasing (Azure SQL Data Warehouse, Parallel Data Warehouse)

**APPLIES TO:** ![no](media/no.png)SQL Server ![no](media/no.png)Azure SQL Database ![yes](media/yes.png)Azure SQL Data Warehouse ![yes](media/yes.png)Parallel Data Warehouse

Aliasing allows the temporary substitution of a short and easy-to-remember string in place of a table or column name in SQL Data Warehouse or SQL Data Warehouse Parallel Data Warehouse DWsql] queries. Table aliases are often used in JOIN queries because the JOIN syntax requires fully qualified object names when referencing columns.

Aliases must be single words conforming to object naming rules. For more information, see “Object Naming Rules” in the [Parallel Data Warehouse product documentation](https://www.microsoft.com/en-us/download/details.aspx?id=51610) Aliases cannot contain blank spaces and cannot be enclosed in either single or double quotes.

Syntax

object_source [ AS ] alias  

Arguments

object_source
The name of the source table or column.

AS
An optional alias preposition. When working with range variable aliasing, the AS keyword is prohibited.

alias
The desired temporary reference name for the table or column. Any valid object name can be used. For more information, see “Object Naming Rules” in the [Parallel Data Warehouse product documentation](https://www.microsoft.com/en-us/download/details.aspx?id=51610)

Examples: [!INCLUDEssSDW] and [!INCLUDEssPDW]

The following example shows a query with multiple joins. Both table and column aliasing are demonstrated in this example.

-- Uses AdventureWorks  
  
SELECT LastName, SUM(SalesAmountQuota) AS TotalSales, SalesTerritoryRegion AS SalesTR,  
    RANK() OVER (PARTITION BY SalesTerritoryRegion ORDER BY SUM(SalesAmountQuota) DESC ) AS RankResult  
FROM dbo.DimEmployee AS e  
INNER JOIN dbo.FactSalesQuota AS sq ON e.EmployeeKey = sq.EmployeeKey  
INNER JOIN dbo.DimSalesTerritory AS st ON e.SalesTerritoryKey = st.SalesTerritoryKey  
WHERE SalesPersonFlag = 1 AND SalesTerritoryRegion != N'NA'  
GROUP BY LastName, SalesTerritoryRegion;  
  

The AS keyword can be excluded, as shown below, but is often included for readability.

-- Uses AdventureWorks  
  
SELECT LastName, SUM(SalesAmountQuota) TotalSales, SalesTerritoryRegion SalesTR,  
RANK() OVER (PARTITION BY SalesTerritoryRegion ORDER BY SUM(SalesAmountQuota) DESC ) RankResult  
FROM dbo.DimEmployee e  
INNER JOIN dbo.FactSalesQuota sq ON e.EmployeeKey = sq.EmployeeKey  
INNER JOIN dbo.DimSalesTerritory st ON e.SalesTerritoryKey = st.SalesTerritoryKey  
WHERE SalesPersonFlag = 1 AND SalesTerritoryRegion != N'NA'  
GROUP BY LastName, SalesTerritoryRegion;  

See Also

SELECT (Transact-SQL)
INSERT (Transact-SQL)
UPDATE (Transact-SQL)