orcle数据库管理表操作

匿名 (未验证) 提交于 2019-12-03 00:32:02

1.创建表:
最基本的: create table t1(id number(4),name varchar2(20),… );
备份: create table t2 as t1;
只复制表结构不复制内容: create table t3 as t1 where 1=2; //条件为假

2.修改表:
增加一列: alter table t1 add abc varchar2(30);
修改字段属性: alter table t1 modify abc varchar(40);
修改列名: alter table t1 rename column abc to cba;
删除列: alter table t1 drop column cba;

3.重命名表: rename t1 to t3;

4.删除表: drop table t3;
在删除的时候会先进入回收站中,
查看回收站: show recyclebin;
清空回收站: purge recyclebin;
闪回表: flashback table t3 to before drop;
删除表不经过回收站: drop table t3 purge;

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!