當前位置:成語大全網 - 書法字典 - 如何修改mysql中多個字段的數據

如何修改mysql中多個字段的數據

1創建壹個測試表,

創建表test _ update _ cols(id int,value varchar(20));

2.插入測試數據;

insert into test_update_cols值(1,‘v 1’);

insert into test_update_cols值(2,‘v2’);

insert into test_update_cols值(3,‘v3’);

插入到test_update_cols值中(4,‘v4’);

3.查詢表中的總數據;select t . * from test _ update _ cols t;

4.編寫壹條語句並同時更新id和值字段;

update test _ update _ cols set id = id+100,value = concat(value,‘00‘);

5.編寫壹條語句並重新查詢數據,您可以發現兩個字段已經更新;select t . * from test _ update _ cols t;