Answers for "mysql db how to add a composite unique key"

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 "mysql db how to add a composite unique key"

Code answers related to "SQL"

Browse Popular Code Answers by Language