欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

ORACLE 修改表结构 之ALTER CONSTAINTS的使用

程序员文章站 2023-11-17 19:35:58
1,创建联合主键 alter table 表名 add constraints 结束名 primary key (列名,列名..); 2,新增字符 alter tab...

1,创建联合主键

alter table 表名 add constraints 结束名 primary key (列名,列名..);

2,新增字符

alter table 表名 add (column datatype [default value][null/not null]);

3,删除列

alter table 表名 drop (column)j;

4,修改表的字符

alter table 表名 modify (column datatype [default value][null/not null])