How would I insert multiple rows or values and avoid duplicates in the following schema.
table schema is
id,subject1,subject2,subject3
You want to add the UNIQUE
constraint to your table. If you write the UNIQUE
constraint out separately, it becomes clearer how to apply it to arbitrary combinations of columns.
CREATE TABLE table_name (
subject1 VARCHAR(30),
subject2 VARCHAR(30),
subject3 VARCHAR(30),
UNIQUE (subject1, subject2, subject3)
);