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 限制条件; 
    原文作者:Quantum Creation
    原文地址: https://blog.csdn.net/qq_47729488/article/details/123045399
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞