Well the syntax is ALTER TABLE [Table Name] DROP COLUMN [Column Name]... and if that doesn't work for some reason...
a. First try repairing your DB and retry the syntax above.
b. Rename the column into a much simpler one word name and delete it using...
EXEC sp_rename 'TableName.ColumnName', 'NewName', 'COLUMN'