👤

Identify the correctly constructed ALTER TABLE statement to add a UNIQUE constraint to the column customer_number with the constraint name customer_number_unique on the table called 'customer'.

Answer :

ALTER TABLE customer ADD CONSTRAINT customer_number_unique UNIQUE (customer_number);