天天看點

資料庫修改資料表删除列添加列

删除列

alter table test

drop column column_name
           

添加列

alter table test

add column_name varchar(6000) default null