增加字段語法:alter table 表名 add (字段名 字段類型 默認值 是否為空);
例:
alter table student add(score number(3,1) default 0 not null);
修改字段的語法:alter table 表名 modify (字段名 字段類型 默認值 是否為空);
例:
alter table student modify(score number(3,2));
刪除字段語法:alter table 表名 drop column 字段名;
例:
alter table student drop column score;
字段重命名:alter table 表名 rename column 列名 to 新列名;
例:
alter table student rename column score to score1;
表重命名:alter table 表名 rename to 新表名;
例:
alter table student rename to student1;