Oracle修改表名的几种方式
发布网友
发布时间:2022-04-29 19:15
我来回答
共2个回答
热心网友
时间:2022-04-14 04:17
-- 修改表名
ALTER TABLE 表名 RENAME TO 新表名;
热心网友
时间:2022-04-14 05:35
1、rename只能修改自己schema下面的表
rename table1 to table2;
2、alter table v1 rename to v2;
3、create table x2 as select * from x1;
DROP TABLE x1;