ORACLE中2种删除列的方法
ORACLE中2种删除列的方法
alter table qq drop column TIME
alter table qq set unused ("TIME") cascade constraints;(注意TIME为字段名,要大写)
发布时间: 2013-07-16 22:38:05 作者: rapoo
ORACLE中2种删除列的方法
ORACLE中2种删除列的方法
alter table qq drop column TIME
alter table qq set unused ("TIME") cascade constraints;(注意TIME为字段名,要大写)