1. oracle 修改表名.列名.字段类型.添加表列.删除表列 alert table scott.test rename to test1--修改表名 alter table scott.test rename column name to name1 --修改表列名 ) --修改字段类型 ) --添加表列 alter table scott.test drop name cascadeconstraints --删除表列 2. 将一个表B的(某几个字段的数据)复制到新表A(某几个不同的字…