Answers for "sql change a colum to unique"

SQL
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 "SQL"

Browse Popular Code Answers by Language