SQL - Indexes and Query Performance
Consider this SQL statement to create an index:
CREATE INDEX idx_price ON products price;
What is wrong with this statement?
Consider this SQL statement to create an index:
CREATE INDEX idx_price ON products price;
What is wrong with this statement?
price. It should be ON products(price).15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions