oracle 表字段新增、修改、删除、重命名以及表重命名


增加字段语法: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;

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM