Answers for "create a unique constraint on a colum sql serve"

SQL
1

unique constraint mssql

USE AdventureWorks2012;  
GO  
CREATE TABLE Production.TransactionHistoryArchive4  
 (  
   TransactionID int NOT NULL,   
   CONSTRAINT AK_TransactionID UNIQUE(TransactionID)   
);   
GO
Posted by: Guest on August-03-2020

Code answers related to "create a unique constraint on a colum sql serve"

Code answers related to "SQL"

Browse Popular Code Answers by Language