Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个包含名字、姓氏、密码、电子邮件、电话等的人员表
我想创建一个独特的约束,其中许多人可以有相同的名字或多个人可以有相同的电子邮件地址(如果家庭只使用一个)但没有两个人可以同时有相同的名字和电子邮件地址
这可能吗?
执行此 DDL 语句。
ALTER TABLE myTable ADD CONSTRAINT tb_UQ UNIQUE(firstname, email)