Google News
logo
Snowflake - Interview Questions
How do we create temporary tables?
In the CREATE TABLE DDL, specify the TEMPORARY keyword (or the TEMP abbreviation) to create a temporary table. The following syntax must be used to create temporary tables:
Create temporary table mytable (id number, creation_date date);
Advertisement