Table Attributes

Snowflake @@Temporary Reference

The @@Temporary attribute is the equivalent to CREATE TEMPORARY in Snowflake.

Type System Hints

@@Temporary can only be used on tables that don't have the @@Transient attribute.

Parameters

This attribute has no parameters.

Example

table Test {
  id VarChar(36) @PrimaryKey
  @@Temporary
}
Previous
@@Transient