In a database that has subselects:
SELECT col2 FROM my_table WHERE col2 NOT IN (SELECT col1 FROM my_table);
Or you could use UNIONs:
SELECT col2 FROM my_table EXCEPT SELECT col1 FROM my_table;
Both of these work in PostgreSQL, while the second will only work in MySQL 4, and the first won't work at all.
Chris