SQL - Indexes and Query Performance
Given the table
products(id INT, name VARCHAR, price DECIMAL), what will be the result of this SQL command?CREATE INDEX idx_price ON products(price);
