UPDATE 在 MySQL 中更新列以追加数据?
为了实现这一目标,语法如下。
UPDATE yourTableName set yourColumnName=concat(ifnull(yourColumnName,””),’anyValue1,anyValue2,anyValue);
为了理解上面的语法,我们首先创建一个表。创建表的查询如下 -
mysql> create table AppendDataDemo -> ( -> StudentId int, -> StudentName varchar(100), -> StudentAge int -> ); Query OK, 0 rows affected (1.54 sec)
使用 insert 命令在表中插入一些记录。查询如下。
mysql> insert into AppendDataDemo values(101,'John',23); Query OK, 1 row affected (0.24 sec) mysql> insert into AppendDataDemo values(102,null,24); Query OK, 1 row affected (0.74 sec) mysql> insert into AppendDataDemo values(103,'Mike',26); Query OK, 1 row affected (0.12 sec)
使用 select 语句显示表中的所有记录。查询如下。
mysql> select *from AppendDataDemo;
以下是输出。
+-----------+-------------+------------+ | StudentId | StudentName | StudentAge | +-----------+-------------+------------+ | 101 | John | 23 | | 102 | NULL | 24 | | 103 | Mike | 26 | +-----------+-------------+------------+ 3 rows in set (0.00 sec)
以下是更新 StudentName 列并将其数据追加到“Carol, Sam, Maria”的查询。
mysql> update AppendDataDemo set StudentName=concat(ifnull(StudentName,""), ' Carol,Sam,Maria'); Query OK, 3 rows affected (0.14 sec) Rows matched: 3 Changed: 3 Warnings: 0
使用 select 语句从表中检查表记录。查询如下。
mysql> select *from AppendDataDemo;
以下是显示追加数据的输出。
+-----------+----------------------+------------+ | StudentId | StudentName | StudentAge | +-----------+----------------------+------------+ | 101 | John Carol,Sam,Maria | 23 | | 102 | Carol,Sam,Maria | 24 | | 103 | Mike Carol,Sam,Maria | 26 | +-----------+----------------------+------------+ 3 rows in set (0.03 sec)
广告