oracle如何修改表名
方式一
alter table old_table_name rename to new_table_name;
這是最簡單的(個人認為)
方式二:
推薦:《SQL教學》
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方面的教程,請關注PHP中文網!
以上是oracle如何修改表名的詳細內容。更多資訊請關注PHP中文網其他相關文章!