ORACLE 修改表结构 之ALTER CONSTAINTS的使用
程序员文章站
2022-06-20 09:28:27
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])