具体方法:
删除字段的值,可以将所有值清空
UPDATE table_name SET field_name = '';
删除字段(这个字段从此就没有了)
ALTER TABLE table_name DROP COLUMN field_name;