– 修改列的数据类型( 即 修改字段的数据类型)(未验证在有数据,并且互有主外键时,是否可用) –另外注意 此处 表 不能用 别名! 语法:
alter table 表名 modify (字段名(即列名) 数据类型及长度);
例: alter table T_Student2 modify (name varchar2(40)); alter table T_Student2 modify (age number);