mysql添加列到指定位置

添加到某列後面table alter table tset_table add age int(4) default 20 after id;test 將age添加到表test_table 中id的後面 其中default 爲默認值tab 若是想將某列添加爲第一列ab alter table test_table add test int (5) default 4  first 
相關文章
相關標籤/搜索