如何将sql数据库中一列中的值复制到另一列

比如a表中有三列 id name age money 其中只有id name 和age中是有数据的,我想把age中的数据复制到money中要怎么做?
下面是我成功实现复制的代码 谢谢各位大侠的指导!
update store_information set salaray=(select b.m from
(select sales as m,store_id as n
from store_information) b where b.n=store_information.store_id)
这样的语句是可以的 但是会提示 无法绑定由多个部分组成的标识符c.store_id
最新回答
自古女子多痴情深

2024-11-06 12:29:58

可用update语句来更改,但要注意,两列的属性及长度应尽量保持一致,或被更改的列的长度大于另一列的长度,否则在update过程中容易报错。

1、创建测试表,插入数据:

create table test
(id int,
name varchar(10),
name1 varchar(10))

insert into test values (1,'a','s')
insert into test values (2,'b','w')
insert into test values (3,'c','x')

数据如下:

2、现在要将name1的内容更改为name中的内容,可用如下语句:

update test set name1=name;

3、更改后的结果如图(此时name和name1列的内容就相同了):

栖止你掌

2024-11-06 07:47:44

update 表 set 列1=列2 where id=2

执行以上SQL语句就行了。
后现条件是只打复制指定行,不加的话,将复制整个表
雪紫∮冰雨

2024-11-06 11:11:56

update a set money=age where 1=1;
白云下的棉絮

2024-11-06 06:23:57

c.store_id 呢

c是什么表