怎样在SQL中设置非主键字段的值不要重复
发布网友
发布时间:2023-11-03 22:32
我来回答
共1个回答
热心网友
时间:2024-11-17 10:11
--给相关字段添加唯一索引
--设置唯一索引:
--1.
create table tb1(
id int primary key, --主键
f1 int unique --唯一索引
)
--2.
create unique index u_tb2_f2 --唯一索引名
on tb2(f2); --字段名
--3.
alter table tb3
add constraint u_f2Name --唯一约束名
unique (f2) --字段名