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