『ORACLE』更改表名(11g)

MYSQL:
rename table table1 to table2;
SQL SERVER:
EXEC sp_rename 'table1', 'table2';
Oracle:
alter table table1 rename to table2
db2:
rename table table1 to table2;
原文地址:https://www.cnblogs.com/KT-melvin/p/6848849.html