ALTER TABLE Employee ADD UNIQUE (ID);
If you have a table named 'Employee' for example in your database and you want to add UNIQUE Constraint on that column. You can achieve that using above query
0 Comments