SQL - Table Constraints
Given the table
products with a UNIQUE constraint on product_code, what happens when you run this SQL?INSERT INTO products (product_code, name) VALUES ('X123', 'Item A');
INSERT INTO products (product_code, name) VALUES ('X123', 'Item B');