Snowflake SQL provides “CREATE TABLE LIKE” statement to create a new table with just the structure of the existing table without copying the data. So I think it's C
CREATE TABLE LIKE creates an empty copy. It should use only metadata to create so it shouldn't need a warehouse/compute or storage.
https://docs.snowflake.com/en/sql-reference/sql/create-table#create-table-like
CREATE TABLE … AS SELECT (creates a populated table; also referred to as CTAS)
CREATE TABLE … USING TEMPLATE (creates a table with the column definitions derived from a set of staged files)
CREATE TABLE … LIKE (creates an empty copy of an existing table)
CREATE TABLE … CLONE (creates a clone of an existing table)
A voting comment increases the vote count for the chosen answer by one.
Upvoting a comment with a selected answer will also increase the vote count towards that answer by one.
So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.
halol
Highly Voted 2 years agoKeshavaMugulur
Highly Voted 2 years ago_yyukta
Most Recent 10 months, 1 week agoMarge23
1 year, 3 months agoMultiCloudIronMan
1 year, 5 months agoshyemko
1 year, 9 months agotpiscaglia
1 year, 9 months agoEmiB
1 year, 9 months agoOTE
1 year, 10 months ago