--SQL 修改某个字段的字段长度
alter table <表名> alter column <字段名> 新类型名(长度)

--SQL 修改某个字段名称
alter table <表名> rename column <字段名> to <新字段名>