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

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])

(0)
上一篇 2022年3月22日
下一篇 2022年3月22日

相关推荐