Oracle表的管理
表的主键与外键
-- 删除主键约束
alter table student drop constraint SYS_C009675;
-- 删除外键约束
alter table student drop constraint SYS_C009676;
添加键的约束
-- 添加主键约束
alter table student add primary key(id);
-- 添加外键约束
alter table student add foreign key(cid) references tclass(id);
表字段的操作
-- 删除字段
alter table student drop column cid;
-- 添加字段
alter table student add cid number;
-- 修改字段名
alter table student rename column cid to cid1;
alter table student rename column cid1 to cid;
-- 修改字段长度/类型
alter table student modify sex varchar2(10);