mysql中怎么修改多个字段的数据
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql中怎么修改多个字段的数据相关的知识,希望对你有一定的参考价值。
1、创建测试表,
create table test_update_cols(id int,value varchar(20));
2、插入测试数据;
insert into test_update_cols values (1,'v1');
insert into test_update_cols values (2,'v2');
insert into test_update_cols values (3,'v3');
insert into test_update_cols values (4,'v4');
3、查询表中全量数据;select t.* from test_update_cols t;
4、编写语句,同时更新id和value两个字段;
update test_update_cols set id = id+100, value = concat(value,'00');
5、编写语句,重新查询数据,可以发现两个字段已经被更新;select t.* from test_update_cols t;
参考技术A UPDATE Person SET Address = 'Zhongshan 23', City = 'Nanjing'WHERE LastName = 'Wilson' 参考技术B update 表名称 set 属性1=?,属性2=? where id=? 这里的id值得是你表的主键,他的值是想要修改的那条记录的主键值 参考技术C :update 表名称 set 属性1=?,属性2=? where id=? 这里的id值得是你表的主键,他的值是想要修改的那条记录的主键值本回答被提问者采纳
以上是关于mysql中怎么修改多个字段的数据的主要内容,如果未能解决你的问题,请参考以下文章