如何将 +1 添加到现有 MySQL 值?


让我们看一个例子,首先创建一个表。

mysql> create table Add1ToExistingValue
   -> (
   -> Value int
   -> );
Query OK, 0 rows affected (0.56 sec)

使用 insert 命令在表中插入一些记录。

查询如下

mysql> insert into Add1ToExistingValue values(10);
Query OK, 1 row affected (0.12 sec)
mysql> insert into Add1ToExistingValue values(13);
Query OK, 1 row affected (0.15 sec)
mysql> insert into Add1ToExistingValue values(15);
Query OK, 1 row affected (0.13 sec)
mysql> insert into Add1ToExistingValue values(16);
Query OK, 1 row affected (0.14 sec)
mysql> insert into Add1ToExistingValue values(20);
Query OK, 1 row affected (0.16 sec)
mysql> insert into Add1ToExistingValue values(40);
Query OK, 1 row affected (0.15 sec)
mysql> insert into Add1ToExistingValue values(50);
Query OK, 1 row affected (0.11 sec)
mysql> insert into Add1ToExistingValue values(55);
Query OK, 1 row affected (0.17 sec)
mysql> insert into Add1ToExistingValue values(56);
Query OK, 1 row affected (0.17 sec)

使用 select 语句从表中显示所有记录。

查询如下

mysql> select *from Add1ToExistingValue;

输出如下

+-------+
| Value |
+-------+
| 10    |
| 13    |
| 15    |
| 16    |
| 20    |
| 40    |
| 50    |
| 55    |
| 56    |
+-------+
9 rows in set (0.00 sec)

以下是将 +1 添加到现有值中的查询

mysql> update Add1ToExistingValue set Value=Value+1 where Value >=20;
Query OK, 5 rows affected (0.08 sec)
Rows matched: 5 Changed: 5 Warnings: 0

让我们使用 select 语句从表中检查表记录。

查询如下

mysql> select *from Add1ToExistingValue;

输出如下

+-------+
| Value |
+-------+
| 10    |
| 13    |
| 15    |
| 16    |
| 21    |
| 41    |
| 51    |
| 56    |
| 57    |
+-------+
9 rows in set (0.00 sec)

更新时间:2019 年 7 月 30 日

646 次浏览

开启你的 职业生涯

完成课程获得认证

开始
广告