如何在MySQL中为多个列指定唯一约束? [英] How do I specify unique constraint for multiple columns in MySQL?

查看:169
本文介绍了如何在MySQL中为多个列指定唯一约束?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一张桌子:

table votes (
    id,
    user,
    email,
    address,
    primary key(id),
);

现在,我要使用户,电子邮件,地址列(在一起)唯一.

Now I want to make the columns user, email, address unique (together).

如何在MySql中做到这一点?

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`);

这篇关于如何在MySQL中为多个列指定唯一约束?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆