让我们首先创建一个表-mysql> create table DemoTable1
(
value int
);
使用插入命令在表中插入一些记录-mysql> insert into DemoTable1 values(10);
使用select语句显示表中的所有记录-mysql> select *from DemoTable1;
输出结果+-------+
| value |
+-------+
| 10 |
+-------+
1 row in set (0.00 sec)
以下是创建第二个表的查询-mysql> create table DemoTable2
(
value1 int
);
使用插入命令在表中插入一些记录-mysql> insert into DemoTable2 values(50);
mysql> insert into DemoTable2 values(100);
使用select语句显示表中的所有记录-mysql> select *from DemoTable2;
输出结果+--------+
| value1 |
+--------+
| 50 |
| 100 |
+--------+
2 rows in set (0.00 sec)
现在,通过将第一个表中的值添加到第二个表中的单个值来更新MySQL数据库表中的字段-mysql> set @myValue=(select value from DemoTable1);
mysql> update DemoTable2 set value1=value1+@myValue;
Rows matched: 2 Changed: 2 Warnings: 0
让我们再次检查表记录-mysql> select *from DemoTable2;
输出结果+--------+
| value1 |
+--------+
| 60 |
| 110 |
+--------+
2 rows in set (0.00 sec)