标致啤酒

文章
3
资源
0
加入时间
3年1月16天

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 限制条件;