SnowPro Core Exam QuestionsBrowse all questions from this exam

SnowPro Core Exam - Question 255


A clustering key was defined on a table, but it is no longer needed.

How can the key be removed?

Show Answer
Correct Answer: C

The correct command to remove a clustering key from a table is 'ALTER TABLE [TABLE NAME] DROP CLUSTERING KEY'. This is because in SQL terminology, the keyword 'DROP' is standard for removing an object or constraint from a table, including clustering keys.

Discussion

11 comments
Sign in to comment
AS314Option: C
Dec 25, 2022

ALTER TABLE <name> DROP CLUSTERING KEY

halolOption: C
Dec 8, 2022

https://docs.snowflake.com/en/sql-reference/sql/alter-table.html C

paknadeemOption: C
Dec 8, 2022

I Think the correct answer is C

KarBiswaOption: C
Mar 10, 2023

Alter table <sssss> drop clustering key

weuzOption: C
Mar 30, 2023

C is the correct one

GiselaSOption: C
Mar 31, 2023

Dropping the Clustering Keys for a Table At any time, you can drop the clustering key for a table using ALTER TABLE: ALTER TABLE <name> DROP CLUSTERING KEY

fahfouhi94Option: C
Feb 3, 2023

https://docs.snowflake.com/en/user-guide/tables-clustering-keys.html

dmitriypoOption: C
May 10, 2023

C https://docs.snowflake.com/en/user-guide/tables-clustering-keys#defining-clustered-tables

AmitsnowflakeOption: C
Sep 18, 2023

C https://docs.snowflake.com/en/user-guide/tables-clustering-keys

_yyuktaOption: C
Feb 26, 2024

C is correct

Mallikharjuna452Option: C
Jul 22, 2024

C is correct answer