SQL - Indexes and Query Performance
Given the table
products with a unique index on sku, what happens when you run this SQL?INSERT INTO products (sku, name) VALUES ('A123', 'Item1');
INSERT INTO products (sku, name) VALUES ('A123', 'Item2');