mysql中怎么修改多个字段的数据

发布网友 发布时间:2022-04-19 22:20

我来回答

4个回答

热心网友 时间:2022-04-08 08:05

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;

热心网友 时间:2022-04-08 09:23

UPDATE Person SET Address = 'Zhongshan 23', City = 'Nanjing'
WHERE LastName = 'Wilson'

热心网友 时间:2022-04-08 10:57

update 表名称 set 属性1=?,属性2=? where id=? 这里的id值得是你表的主键,他的值是想要修改的那条记录的主键值

热心网友 时间:2022-04-08 12:49

:update 表名称 set 属性1=?,属性2=? where id=? 这里的id值得是你表的主键,他的值是想要修改的那条记录的主键值
声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。
E-MAIL:11247931@qq.com