Comment

Create table option

Description

Specifies a comment for the table.

The comment table is supported by Snowflake but the syntax is slightly different.

Sample Source

Hive

CREATE TABLE table1 (
    col1 STRING 
) 
COMMENT 'This is the main table';

Snowflake

CREATE TABLE table1 (
    col1 STRING 
) 
COMMENT = 'This is the main table';

Known Issues

No issues were found.

No related EWIs.

Last updated