Answers for "how to add unique key constraint to an existing primary key of table with cascading options mysql"

SQL
0

how to add unique key constraint in mysql

-- Add a Unique constraint and deifine the constraint name
ALTER TABLE TABLENAME
ADD	CONSTRAINT UQ_tblPerson_Email UNIQUE(COLUMN_NAME)
Posted by: Guest on August-16-2021

Code answers related to "how to add unique key constraint to an existing primary key of table with cascading options mysql"

Code answers related to "SQL"

Browse Popular Code Answers by Language