『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;
posted @ 2017-05-13 14:05  九號栈長  阅读(326)  评论(0编辑  收藏  举报