create table test(a varchar2(20),b number(2))
重名命
alter table test rename to test1
(rename test1 to test2)
增删字段
alter table test2 drop column f
修改字段类型和大小
alter table test2 modify d varchar(40)
alter table test2 modify f varchar(40)
alter table test2 add c varchar2(30)
alter table test2 add (d varchar2(30),e number(4))
alter table test2 rename column e to f
处理约束
alter table test2 add constraint pk_mypri primary key (d,f)
利用下面的语句在删除DEPT表中的PRIMARY KEY约束时,同时将删除其它表中引用这个约束的FOREIGN KEY约束:
alter table dept drop primary key cascade
加foreign key约束(多字段/表级)
alter table employees add constraint emp_jobs_fk foreign key (job,deptno) references jobs (jobid,deptno) on delete cascade
Oracle alter table
最新推荐文章于 2025-05-29 14:59:57 发布
本文详细介绍了如何使用SQL语句进行表结构的变更操作,包括重命名表、增删及修改字段、处理约束等。通过具体示例展示了如何实现这些变更,并提供了添加主键和外键约束的方法。
2934

被折叠的 条评论
为什么被折叠?



