alter table
1.更改字段的类型:alter table 表名 modify(字段名 字段类型);
alter table student modify(age char(10));
2.更改表名:alter table 表名 rename to 新表名;
alter table student rename to re_student;
3.更改字段名:alter table 表名 rename column 字段名 to 新字段名;
alter table student rename column age to re_age;
4.增加字段:alter table 表名 add(字段名 字段类型);
alter table student add(note varchar2(200));
5.删除字段:alter table 表名 drop(字段名);
alter table student drop age;
6.增加约束: