ALTER TABLE:
*
Drop Column
ALTER TABLE Employees
DROP COLUMN salary;
This will not only delete information from that column, but will drop the column salary from table employees(the column will no more exist).