Ultimate access to all questions.
Upgrade Now 🚀
Sign in to unlock AI tutor
You have a table orders and want to enable automatic liquid clustering. Which command is correct?
A
ALTER TABLE orders CLUSTER BY AUTO;
B
ALTER TABLE orders AUTO CLUSTER;
C
ALTER TABLE orders CLUSTER BY (AUTO);
D
ALTER TABLE orders ENABLE AUTO CLUSTER;
Explanation:
Enable automatic liquid clustering on an existing table using: ALTER TABLE table_name CLUSTER BY AUTO.