Home Next Previous SQL ALTER Statement ADD UNIQUE CONSTRAINT The ALTER Statement is used to add a new constraint to an existing table. Syntax: ALTER TABLE table_name ADD CONSTRAINT ConstraintName UNIQUE (column_name); Example: Objective: In this example, we will add unique key constraint to an existing table emp ALTER TABLE Tbl_Emp ADD CONSTRAINT unique_const UNIQUE (Dept)