Oracle中修改表中字段名

更改字段名:
--modify 不能用于更改字段名
--alter table sm_emp modify address sm_address;err!

解决方法:
create table ut as select name,tel,id empid from sm_emp;--将sm_emp中数据取出并存到新建的表ut中,并将字段id改名为empid
drop table sm_emp;
rename ut to sm_emp;

删除字段名:
alter table 表名 drop column 列名;-----8i中新增
alter table sm_emp drop column address;

8i以前版本的解决方法:
create table ut as select name,tel from sm_emp;--将sm_emp中数据取出并存到新建的表ut中,并将字段id去掉
drop table sm_emp;
rename ut to sm_emp;