Are you wanting to modify the data in the database or modify the table structure to remove the columns? The only way that I know where you can delete columns of data is to set the value to NULL or 0 or ''(empty string), etc.
UPDATE table_name SET column = 0 (or NULL or "") WHERE filter_column = some_value