sql server management studio makes it easy. just open the table, its columns, and right-click the column (or click it twice).
from the command line, use sp_rename
EXEC sp_rename
@objname = 'table_name.old_column_name',
@newname = 'new_column_name',
@objtype = 'COLUMN'