Create a stored procedure hidden in the index sqlserver that ignores the repetition value

xiaoxiao2021-03-06  41

CREATE UNIQUE NONCLUSTERED INDEX IX_PARTINFOTMP on Partinfotmp

(

Id

) With ignore_dup_key on [primary]

Go

INSERT INTO ....

You can go to the repeated record in the table.

转载请注明原文地址:https://www.9cbs.com/read-52623.html

New Post(0)