码迷,mamicode.com
首页 > 数据库 > 详细

Oracle 修改表名

时间:2014-12-17 10:46:58      阅读:259      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   sp   on   div   log   bs   as   

1ALTER TABLE T_PLAT_KEYWORD_STATISTIC RENAME TO T_PLAT_KEYWORD;
2create new_table as select * from old_table;drop table old_table;
3、SQL> select tname from tab;
TNAME
------------------------------
TEST
 
SQL> rename test to temp ;
Table renamed.
 
SQL> select tname from tab ;
TNAME
------------------------------
TEMP

 

Oracle 修改表名

标签:style   blog   color   sp   on   div   log   bs   as   

原文地址:http://www.cnblogs.com/sallet/p/4168755.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!