1. 程式人生 > >sqlSerer修改字段類型,新增字段

sqlSerer修改字段類型,新增字段

ack 列名 ble serer 修改 null not null alter 新增

修改字段類型

alter table 表名 alter column 列名 類型 not null

新增字段

alter table 表名 add 字段 類型 not null

sqlSerer修改字段類型,新增字段