
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下面的表
本组件封装了Angular1.0版本,组件实现了以下功能: 路由,子路由,轮播,cookie读写,加密,表单提交验证,拦截器,白名单,搜索过滤与排序(等级划分), 大小写转换,Map数组循环遍历动态修改后台数据等功能。
方式三:create table new_table_name as select * from old_table_name;
相当于再复制成一张新表
drop table old_table_name; 删除旧表
方式四:直接在PLSQL developer里面改
推荐教程: 《Oracle教程》









