The following example demonstrates how to use column aliases in Snowflake. The first two columns, from the SQL Server code, are expected to be transformed from an assignment form into a normalized form using the AS keyword. The third and fourth columns are using valid Snowflake formats.
SQL Server
Snowflake
SELECT TOP
The basic case of SQL Server Select Top is supported by Snowflake. However, three more cases exist that are not supported, you can check them in the Known Issues section.
SQL Server
Snowflake
SELECT INTO
The following example shows the SELECT INTO is transformed to a CREATE TABLE AS, this is because in Snowflake there is not an equivalent for SELECT INTO and to create a table based on a query has to be with the CREATE TABLE AS.
SQL Server
Snowflake
Another case is when including set operators such as EXCEPT and INTERSECT. The transformation is basically the same as the previous one.
SQL Server
Snowflake
Known Issues
SELECT TOP Aditional Arguments
Since PERCENT and WITH TIESkeywords affect the result, and they are not supported by Snowflake, they will be commented out and added as an error.
SQL Server
Snowflake
SELECT FOR
Since the FOR clause is not supported in Snowflake, it is commented out and added as an error during the transformation.
SQL Server
Snowflake
SELECT OPTION
The OPTION clause is not supported by Snowflake. It will be commented out and added as a warning during the transformation.
SQL Server
Snowflake
SELECT WITH
The WITH clause is not supported by Snowflake. It will be commented out and added as a warning during the transformation.
SELECT
MyCol1Alias = COL1,
MyCol2Alias = COL2,
COL3 AS MyCol3Alias,
COL4 MyCol4Alias
FROM TABLE1;
SELECT
COL1 AS MyCol1Alias, -- Translate to us keyword AS
COL2 AS MyCol2Alias, -- Translate to us keyword AS
COL3 AS MyCol3Alias, -- Already using a valid format
COL4 MyCol4Alias -- Already using a valid format
FROM TABLE1;
SELECT TOP 1 * from ATable;
SELECT TOP 1 * from PUBLIC.ATable;
SELECT * INTO NEWTABLE FROM TABLE1;
CREATE TABLE PUBLIC.NEWTABLE AS SELECT * FROM PUBLIC.TABLE1 ;
SELECT * INTO NEWTABLE FROM TABLE1
EXCEPT
SELECT * FROM TABLE2
INTERSECT
SELECT * FROM TABLE3;
CREATE TABLE PUBLIC.NEWTABLE AS SELECT * FROM PUBLIC.TABLE1
EXCEPT
SELECT * FROM PUBLIC.TABLE2
INTERSECT
SELECT * FROM PUBLIC.TABLE3 ;
SELECT TOP 1 PERCENT * from ATable;
SELECT TOP 1 WITH TIES * from ATable;
SELECT TOP 1 PERCENT WITH TIES * from ATable;
SELECT TOP 1 /*** MSC-ERROR - MSCEWI1021 - PERCENT NOT SUPPORTED ***/ * from PUBLIC.ATable;
SELECT TOP 1 /*** MSC-ERROR - MSCEWI1021 - WITH TIES NOT SUPPORTED ***/ * from PUBLIC.ATable;
SELECT TOP 1 /*** MSC-ERROR - MSCEWI1021 - PERCENT AND WITH TIES NOT SUPPORTED ***/ * from PUBLIC.ATable;
SELECT column1, column2 FROM my_table FOR XML PATH('');
SELECT column1,
column2 FROM PUBLIC.my_table
-- ** MSC-ERROR - MSCEWI1021 - FOR CLAUSE NOT SUPPORTED **
-- FOR XML PATH('')
;
SELECT column1, column2 FROM my_table OPTION (HASH GROUP, FAST 10);
SELECT column1,
column2 FROM PUBLIC.my_table
-- ** MSC-WARNING - MSCEWI1042 - Commented OPTION CLAUSE - THIS IS NON-RELEVANT **
-- OPTION (HASH GROUP, FAST 10)
;
SELECT AValue from ATable WITH(NOLOCK, NOWAIT);
SELECT AValue from PUBLIC.ATable
-- ** MSC-WARNING - MSCEWI1042 - Commented WITH TABLE HINT - THIS IS NON-RELEVANT **
-- WITH(NOLOCK, NOWAIT)
;