Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

Thanks in advance.

  • Of course the example is just... an example. So please don't worry about the semantics.
share|improve this question
4  
you could modify your question to How do I specify a composite unique constraint in MySQL? – systemovich Oct 6 '10 at 17:17
39  
@Geoffrey Van Wyk then the people that don't know SQL terminology will never find this question or it's answer. – Timo Huovinen Feb 1 '12 at 13:43
3  
I just found this question by searching on "mysql unique multiple columns." so yes, the scenario @YuriKolovsky mentioned is possible. Thanks, OP! This is a good starting point, and without this question I wouldn't have know what part of TFM I need to read. – octern Mar 12 '12 at 21:00

6 Answers

up vote 223 down vote accepted
alter table votes add unique index(user, email, address);
share|improve this answer
4  
+1 Perfect, simple answer! – Django Reinhardt Feb 26 '11 at 19:31
1  
Would this work properly with the ON DUPLICATE KEY clause of INSERT statements? That is, if I were trying to insert a row that conflicted with another row's user/email/address values, would the INSERT do the actions specified by the ON DUPLICATE KEY clause instead? – clizzin May 26 '11 at 2:29
1  
yes that would work. – M. of CA Aug 13 '11 at 19:40
3  
Gary, the combination of three would be unique. – Russ Oct 25 '11 at 12:26
8  
beautiful answer, made me cry – Rimbuaj Dec 20 '12 at 10:07
show 2 more comments

I have a MySQL table:

CREATE TABLE `content_html` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `id_box_elements` int(11) DEFAULT NULL,
  `id_router` int(11) DEFAULT NULL,
  `content` mediumtext COLLATE utf8_czech_ci NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `id_box_elements` (`id_box_elements`,`id_router`)
);

and the UNIQUE KEY works just as accepted, it allows multiple NULL rows of id_box_elements and id_router.

I am running MySQL 5.1.42, so probably there was some update on the issue discussed above. Fortunately it works and hopefully it will stay that way.

share|improve this answer
4  
I wanted to mark this answer up as it does show you how to create a new table with a unique index where as jonstjohn's answer above tells you how to update an existing table. They do the same thing though just depends on if your creating a new table or updating an existing one. :) – GazB Jan 27 '12 at 11:46
what's with all the backquotes, do they serve some purpose? – puk May 16 at 6:48
It's output out of Adminer (www.adminer.org) which inserts these backquotes automatically, so there is no problem with colliding mysql keywords used as column names. – Frodik May 16 at 13:40

Multi column unique indexes do not work in MySQL if you have a NULL value in row as MySQL treats NULL as a unique value and at least currently has no logic to work around it in multi-column indexes. Yes the behavior is insane, because it limits a lot of legitimate applications of multi-column indexes, but it is what it is... As of yet, it is a bug that has been stamped with "will not fix" on the MySQL bug-track...

share|improve this answer
5  
Two points of clarification: 1) this behavior does not hold for ENGINE BDB, and, 2) this is documented behavior, although, IMHO, not documented overtly enough given how surprising/unpleasant it can be. See MySQL bug 25544 bugs.mysql.com/bug.php?id=25544 for a discussion. – pilcrow May 7 '10 at 21:41
Thanks for the NULL heads up, addressed the issue i was having... I think I'll go with a hash checksum – Daniel Doezema Dec 18 '11 at 21:24

Have you tried this ?

UNIQUE KEY `thekey` (`user`,`email`,`address`)
share|improve this answer
I tried this, but it doesn't seem to work. I will try again. – Niyaz Mar 11 '09 at 19:17
What Erick said works just fine for me: UNIQUE KEY thekey` (user,email,address)`. I'm using MYSQL version 5.5.24 You can set this even in PHPMYADMIN if you are using it. I'm using the 3.5.1 version of PMA. – WQC Dec 11 '12 at 15:30

Here is a method that I keep in my migration helpers... You may need to customize for your DB:

    def add_uniq_constraint(table_name, pk_columns, constraint_name = "un_#{table_name}")
      if pk_columns.class.name == "Array"
        pk_columns = pk_columns.map{|x| x.to_s}.join(',')
      else
        pk_columns = pk_columns.to_s
      end

      execute %{alter table #{table_name} 
                add constraint #{constraint_name} UNIQUE (#{pk_columns})}
    end

I can't remember where I found the original code to give proper credit, but this is helpful to have in your toolbox.

share|improve this answer

If you want to avoid duplicates in future. Create another column say id2.

UPDATE tablename SET id2 = id;

Now add the unique on two columns:

alter table tablename add unique index(columnname, id2);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.