alter table 表名 add 列名 类型 //增加 alter table 表名 drop column 列名 //删除
update tab set value=(select value from tab where id=1) where id=2