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 1 year, 11 months agoKeshavaMugulur
Highly Voted 1 year, 11 months ago_yyukta
Most Recent 8 months, 2 weeks agoMarge23
1 year, 1 month agoMultiCloudIronMan
1 year, 4 months agoshyemko
1 year, 7 months agotpiscaglia
1 year, 7 months agoEmiB
1 year, 8 months agoOTE
1 year, 8 months ago