Answers for "add constraint to existing table mysql"

SQL
4

add constraint to existing table mysql

ALTER TABLE table_name
ADD CONSTRAINT constraint_name UNIQUE (column1, column2, ... column_n);
Posted by: Guest on January-14-2021

Code answers related to "add constraint to existing table mysql"

Code answers related to "SQL"

Browse Popular Code Answers by Language