1. 程式人生 > >sql 語句 增加列,在指定列後面新增列

sql 語句 增加列,在指定列後面新增列

 
Alter table send add column type2 int  NOT NULL DEFAULT '0' after id; //在send表 增加列type2  int型別 不為空 預設值為0   在列id後面加