MySQL 将数据库字段增加 1?

mysqlmysqli database

您可以使用 update 命令增加数据库。语法如下 −

UPDATE yourTableName
set yourColumnName=yourColumnName+1
where condition;

为了理解上述语法,我们首先创建一个表。创建表的查询如下 −

mysql> create table IncrementBy1
   -> (
   -> Id int,
   -> Name varchar(100),
   -> CounterLogin int
   -> );
Query OK, 0 rows affected (0.63 sec)

使用 insert 命令插入一些记录。在表中插入记录的查询如下 −

mysql> insert into IncrementBy1 values(100,'John',30);
Query OK, 1 row affected (0.17 sec)

mysql> insert into IncrementBy1 values(101,'Carol',50);
Query OK, 1 row affected (0.15 sec)

mysql> insert into IncrementBy1 values(102,'Bob',89);
Query OK, 1 row affected (0.25 sec)

mysql> insert into IncrementBy1 values(103,'Mike',99);
Query OK, 1 row affected (0.18 sec)

mysql> insert into IncrementBy1 values(104,'Sam',199);
Query OK, 1 row affected (0.36 sec)

mysql> insert into IncrementBy1 values(105,'Tom',999);
Query OK, 1 row affected (0.18 sec)

使用 select 语句显示表中的所有记录。查询如下 −

mysql> select *from IncrementBy1;

输出

+------+-------+--------------+
| Id   | Name  | CounterLogin |
+------+-------+--------------+
|  100 | John  |           30 |
|  101 | Carol |           50 |
|  102 | Bob   |           89 |
|  103 | Mike  |           99 |
|  104 | Sam   |          199 |
|  105 | Tom   |          999 |
+------+-------+--------------+
6 rows in set (0.00 sec)

以下查询将数据库字段增加 1 −

mysql> update IncrementBy1
   -> set CounterLogin=CounterLogin+1
   -> where Id=105;
Query OK, 1 row affected (0.45 sec)
Rows matched: 1 Changed: 1 Warnings: 0

现在您可以检查特定记录是否已递增。值 999 已递增 1,因为我们正在递增 Id=105 的值,如上所示。

以下是检查记录的查询 −

mysql> select *from IncrementBy1 where Id=105;

输出

+------+------+--------------+
| Id   | Name | CounterLogin |
+------+------+--------------+
|  105 | Tom  | 1        000 |
+------+------+--------------+
1 row in set (0.00 sec)

相关文章