Views
Translation reference to convert Teradata VIEW statement to Snowflake
Description
Sample Source Patterns
Create View Transformation
CREATE VIEW view1 (someTable.col1, someTable.col2) AS locking row for access
SELECT
my_table.col1, my_table.col2
FROM table1 AS my_table
WHERE my_table.col1 = 'SpecificValue'
UNION ALL
SELECT other_table.col2
FROM table2 AS other_table
WHERE my_table.col2 = other_table.col2)Custom Schema Tag
Teradata
Snowflake
Known Issues
1. Locking row for access unsupported
Related EWIs
Last updated
Was this helpful?