I have a table:
table votes ( id, user, email, address, primary key(id), );
Now I want to make the columns user, email, address unique (together).
How do I do this in MySql?
Of course the example is just... an example. So please don't worry about the semantics.
ALTER TABLE `votes` ADD UNIQUE `unique_index`(`user`, `email`, `address`);
2.1m questions
2.1m answers
60 comments
57.0k users