向表中添加数据
alter table 表名 add 列名 类型
更改表中列的数据类型
alter table 表名 alter column 列名 类型
删除表中的指定列
alter table 表名 drop column 列名