We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Snowflake's CREATE VIEW includes standard modifiers but also:
CREATE VIEW
SECURE
VOLATILE
TEMPORARY
CREATE OR REPLACE SECURE VIEW MY_VIEW AS SELECT COLUMN_1 FROM MY_TABLE; CREATE VOLATILE VIEW MY_VIEW AS SELECT COLUMN_1 FROM MY_TABLE;
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Grammar or Syntax Description
Snowflake's
CREATE VIEW
includes standard modifiers but also:SECURE
VOLATILE
(alias forTEMPORARY
)SQL Example
Additional context
The text was updated successfully, but these errors were encountered: