Ultimate access to all questions.
Upgrade Now 🚀
Sign in to unlock AI tutor
You want to stop clustering on the logs table. Which command is correct?
A
ALTER TABLE logs CLUSTER BY NONE;
B
ALTER TABLE logs REMOVE CLUSTERING;
C
ALTER TABLE logs DROP CLUSTERING;
D
ALTER TABLE logs PARTITION BY NONE;
Explanation:
To remove clustering keys, use: ALTER TABLE table_name CLUSTER BY NONE.