thả ràng buộc và tạo lại nó
alter table Persion drop CONSTRAINT <constraint_name>
alter table Persion add primary key (persionId,Pname,PMID)
chỉnh sửa:
bạn có thể tìm thấy tên ràng buộc bằng cách sử dụng truy vấn bên dưới:
select OBJECT_NAME(OBJECT_ID) AS NameofConstraint
FROM sys.objects
where OBJECT_NAME(parent_object_id)='Persion'
and type_desc LIKE '%CONSTRAINT'