分两种情况,如果删除列中数据
update 表名 set 字段=null;commit;
如果是删除整个列:
alter table 表名 drop column 列名;
只是清除列的数据?还是删除列?