FROM clause
Description
The
FROM
clause in a query lists the table references (tables, views, and subqueries) that data is selected from. If multiple table references are listed, the tables must be joined, using appropriate syntax in either theFROM
clause or theWHERE
clause. If no join criteria are specified, the system processes the query as a cross-join. (Redshift SQL Language Reference FROM Clause)
The FROM clause is partially supported in Snowflake. Object unpivoting is not currently supported.
Grammar Syntax
Sample Source Patterns
Input Code:
IN -> Redshift_01.sql
Output Code:
IN -> Redshift_01.sql
Known Issues
There are no known issues.
Related EWIs.
See SELECT transformation for related EWIs.
Last updated