在mysql数据库原有字段后增加新内容
发布时间:2016-12-29 来源:查字典编辑
摘要:复制代码代码如下:updatetablesetuser=concat(user,$user)wherexx=xxx;
复制代码 代码如下:
update table set user=concat(user,$user) where xx=xxx;
复制代码 代码如下:
update table set user=concat(user,$user) where xx=xxx;