SELECT columnOne, columnTwo FROM yourTable;
ALTER TABLE Colleges
ADD UNIQUE UniqueCollege (college_id, college_code);
-- You can select data from a table using a SELECT statement.
-- Select multiple columns from table:
SELECT example_column, example_column2
FROM example_table;