unique key based on 2 columns in SQl Server 2008?

后端 未结 3 1326
余生分开走
余生分开走 2021-02-04 06:42

is it posible to have SQL Server to have a unique key based on 2 columns?

I can have duplicates in both columns but not at the same time:

MfgID  :   Cu         


        
3条回答
  •  北海茫月
    2021-02-04 07:45

    CREATE UNIQUE NONCLUSTERED INDEX IX_TableName_MfgID_CustNum ON TableName
    (
            MfgID  ,
            Column2
    ) WITH( IGNORE_DUP_KEY = OFF)
    

提交回复
热议问题