oracle中修改表名


<<<備忘>>>
 
answer1:
ALTER TABLE old_table_name RENAME TO new_table_name;(大寫為系統命令)
answer2:
SQL> select tname from tab ;
TNAME
------------------------------
TEST
 
SQL> rename test to temp ;
Table renamed.
 
SQL> select tname from tab ;
TNAME
------------------------------
TEMP
rename只能修改自己schema下面的表。
answer3:
create new_table as select * from old_table;drop table old_table;


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM