Field Attributes

Snowflake @PrimaryKey Reference

The @PrimaryKey attribute is the equivalent to PRIMARY KEY in Snowflake.

Parameters

This attribute has no parameters.

Example

table Test {
  id VarChar(36) @PrimaryKey
  //             ^^^^^^^^^^^
}
Previous
Field Attributes