MySQL更改字段,更新字段值 更改字段属性、字段名alter table table_name change column name1 name2 限制条件;eg:alter table person_table column name1 name2 Varchar(128) default '0';更新值:update table_name set 字段名=值 where 限制条件; mysql 2023-12-04 52 点赞 0 评论 78 浏览