SQL - Table Constraints
Given the table
employees with a UNIQUE constraint on email, what happens if you run this query?INSERT INTO employees (id, email) VALUES (1, 'john@example.com');
INSERT INTO employees (id, email) VALUES (2, 'john@example.com');