Answers for "how to add unique key constraint in 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 in mysql"

Code answers related to "SQL"

Browse Popular Code Answers by Language