博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ORACLE中通过SQL语句(alter table)来增加、删除、修改字段
阅读量:6579 次
发布时间:2019-06-24

本文共 494 字,大约阅读时间需要 1 分钟。

1.添加字段:

alter table  表名  add (字段  字段类型)  [ default  '输入默认值']  [null/not null]  ;

2.添加备注:

comment on column  库名.表名.字段名 is  '输入的备注';  如: 我要在ers_data库中  test表 document_type字段添加备注  comment on column ers_data.test.document_type is '文件类型';

3.修改字段类型:

alter table 表名  modiy (字段  字段类型  [default '输入默认值' ] [null/not null]  ,字段  字段类型  [default '输入默认值' ] [null/not null] ); 修改多个字段用逗号隔开

4.删除字段:

alter table  表名  drop (字段);

本文转载自:https://www.cnblogs.com/kobigood/p/6293955.html

转载于:https://www.cnblogs.com/test-7/p/10144643.html

你可能感兴趣的文章
Python脚本日志系统
查看>>
RowSet的使用
查看>>
每日一记--cookie
查看>>
IOS 7 Study - UISegmentedControl
查看>>
八、通用类型系统
查看>>
JQuery的ajaxFileUpload的使用
查看>>
关于Integer类中parseInt()和valueOf()方法的区别以及int和String类性的转换.以及String类valueOf()方法...
查看>>
ios 控制器的生命周期
查看>>
JavaScript 特殊效果代码
查看>>
【?】codeforces721E Road to Home(DP+单调队列)
查看>>
MySQL 仅保留7天、一个月数据
查看>>
Diff Two Arrays
查看>>
下拉菜单
查看>>
[清华集训2014]玛里苟斯
查看>>
【MVC+EasyUI实例】对数据网格的增删改查(上)
查看>>
Project Euler 345: Matrix Sum
查看>>
你可能不知道的技术细节:存储过程参数传递的影响
查看>>
.htaccess 基础教程(四)Apache RewriteCond 规则参数
查看>>
UVM中的class--2
查看>>
ORACLE 存储过程异常捕获并抛出
查看>>