ORACLE中2种删除列的方法 ORACLE中2种删除列的方法alter table qq drop column TIMEalter table qq set unused ("TIME") cascade constraints;(注意TIME为字段名,要大写)