你是指把某一列字段删除,还是把字段值置空?如果是删除列,那么语句是alter table [表名] drop column [列名]如果是某列置空,用update,前提是该列允许为空update [表名]set [列名]=null