SQL Crie índice exclusivo para valores exclusivos

-- create unique index
CREATE UNIQUE INDEX college_index
ON Colleges(college_code);
SAMER SAEID