oracle如何修改表名
时间:2020-09-22 12:00:06
作者:重庆seo小潘
来源:
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只能修改自己sc
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下面的表
方式三createtable new_table_name as select * from old_table_name;相当于再复制成一张新表drop table old_table_name; 删除旧表方式四
直接在PLSQL developer里面改。
更多oracle方面的教程,请关注PHP中文网!以上就是oracle如何修改表名的详细内容,更多请关注小潘博客其它相关文章!