Answers for "mysql alter table constraint"

SQL
1

mysql alter table set column unique

ALTER TABLE contacts
ADD CONSTRAINT contacts_unique UNIQUE (reference_number);
Posted by: Guest on June-17-2020
1

alter table mysql

ALTER TABLE contacts
  ADD last_name varchar(40) NOT NULL
    AFTER contact_id,
  ADD first_name varchar(35) NULL
    AFTER last_name;
Posted by: Guest on April-14-2020

Code answers related to "mysql alter table constraint"

Code answers related to "SQL"

Browse Popular Code Answers by Language