Q. Which of the following is a valid way to create an index?
β
Correct Answer: (C)
CREATE INDEX idx_name ON table(column);
Explanation: `CREATE INDEX` is the correct syntax to create an index in MySQL.