给指定的表格添加一个字段
alter table 你的表 add (字段名 字段类型);
实际应用
alter table t_user add (t_create_date date);
//给一个表格的字段天加一默认的值
alter table t_user mofidy 你的字段 default 你的默认值
举例
alter table t_user mofidy t_create_date default sysdate;sysdate(为ORACLE默认的系统时间)
删除表的字段
alter table 你的表 drop 你的表字段
举例
alter table t_user drop t_create_date;
添加主键 constraint 翻译 约束
alter table 你的表 add constraint 约束名字 约束关键字 (你的列);
alter table t_user add constraint t_pk primary key(id);
添加外键约束 references 参考
alter table 主表 add constraint 外键约束名 约束关键字(关联列) references 参考的表(参考表的列);
alter table t_test add contraint t_fk foreign key (id) references t_user(id);
//删除外键
alter table t_test drop constraint 外键名
alter tabl t_test drop constaint t_fk;