HIDDEN

Description

Specifies whether the column is to be defined as hidden. The hidden attribute determines whether the column is included in an implicit reference to the table, or whether it can be explicitly referenced in SQL statements.

Click here to navigate to the IBM DB2 docs page for this syntax.

HIDDEN Option is removed because it is not applicable in Snowflake

Grammar Syntax

Sample Source Patterns

IBM DB2

CREATE TABLE T1
(
COL1 VARCHAR(10) IMPLICITLY HIDDEN
);

Snowflake

CREATE TABLE T1
(
COL1 VARCHAR(10)
-- ** MSC-WARNING - MSCEWI1002 - REMOVED NEXT STATEMENT, NOT APPLICABLE IN SNOWFLAKE.  **
--                 IMPLICITLY HIDDEN"
);

Known issues

There are no known issues.

Last updated