ALTER TABLE user ADD CONSTRAINT user_number_unique UNIQUE (user_number);
Common mistakes with adding the UNIQUE constraint to an existing column include not having ( ) around the column names, omitting the keyword UNIQUE, incorrectly spelling the column name, and not including the constraint name.