增加其中某一列值的 MySQL 查询
我们首先创建一个表 -
mysql> create table DemoTable -> ( -> Id int NOT NULL AUTO_INCREMENT PRIMARY KEY, -> Name varchar(100), -> Score int -> ); Query OK, 0 rows affected (0.78 sec)
使用 insert 命令在表中插入一些记录 -
mysql> insert into DemoTable(Name,Score) values('John',68); Query OK, 1 row affected (0.23 sec) mysql> insert into DemoTable(Name,Score) values('Carol',98); Query OK, 1 row affected (0.27 sec) mysql> insert into DemoTable(Name,Score) values('David',89); Query OK, 1 row affected (0.16 sec) mysql> insert into DemoTable(Name,Score) values('Robert',67); Query OK, 1 row affected (0.14 sec)
使用 select 语句从表中显示所有记录 -
mysql> select *from DemoTable;
输出
这将产生以下输出 -
+----+--------+-------+ | Id | Name | Score | +----+--------+-------+ | 1 | John | 68 | | 2 | Carol | 98 | | 3 | David | 89 | | 4 | Robert | 67 | +----+--------+-------+ 4 rows in set (0.00 sec)
以下是增加其中某一列值的查询,增量为 1 -
mysql> update DemoTable set Score=Score+1 where Id=3; Query OK, 1 row affected (0.22 sec) Rows matched: 1 Changed: 1 Warnings: 0
让我们再次检查一下表记录 -
mysql> select *from DemoTable;
输出
这将产生以下输出 -
+----+--------+-------+ | Id | Name | Score | +----+--------+-------+ | 1 | John | 68 | | 2 | Carol | 98 | | 3 | David | 90 | | 4 | Robert | 67 | +----+--------+-------+ 4 rows in set (0.00 sec)
广告