Answers for "how to alter a field in sql and make it unique"

Go
0

alter unique key sql query

ALTER TABLE Product ADD CONSTRAINT AK_Product_ProductCode UNIQUE( ProductCode )
ALTER TABLE Product ADD CONSTRAINT AK_Product_ProductStamp UNIQUE( ProductStamp )
Posted by: Guest on May-24-2021
0

sql change a colum to unique

ALTER TABLE product
ADD CONSTRAINT UQ_product_name UNIQUE(name);
Posted by: Guest on January-09-2022

Code answers related to "how to alter a field in sql and make it unique"

Browse Popular Code Answers by Language