修改表名

ALTER TABLE 旧表名 RENAME TO 新表名;

新增字段

alter table test_table add test_column number;

修改字段

alter table test_table modify (test_column varchar(19) not null);
Logo

腾讯云面向开发者汇聚海量精品云计算使用和开发经验,营造开放的云计算技术生态圈。

更多推荐