oracle怎麼修改表名
方式一:alter table old_table_name rename to new_table_name;
這是最簡單的(個人認為)
方式二:select tname from tab;(查詢的是資料庫中所有的表名)rename old_table_name to new_table_name;
rename只能修改自己schema下面的表格
方式三:create table new_table_name as select * from old_table_name;
相當於再複製成一張新表
drop table old_table_name;
刪除舊表
方式四:直接在PLSQL developer
裡面改
推薦教學: 《 Oracle教學》
以上是oracle怎麼修改表名的詳細內容。更多資訊請關注PHP中文網其他相關文章!