将多个参数值插入到 MySQL 的单个列中?
要将多个参数值插入到单个列中,请使用 CONCAT_WS() 或 CONCAT()。我们先创建一个表 -
mysql> create table DemoTable ( Name varchar(100), Age int, CountryName varchar(100), PersonInformation text ); Query OK, 0 rows affected (0.67 sec)
以下是将多个参数值插入到单个列中的查询。我们将使用与用于在 MySQL 表中插入记录的 INSERT 命令相同的命令 -
mysql> insert into DemoTable values('John',21,'US',concat_ws('-',Name,Age,CountryName)); Query OK, 1 row affected (0.13 sec) mysql> insert into DemoTable values('Chris',22,'AUS',concat_ws('-',Name,Age,CountryName)); Query OK, 1 row affected (0.15 sec) mysql> insert into DemoTable values('Bob',24,'UK',concat_ws('-',Name,Age,CountryName)); Query OK, 1 row affected (0.17 sec)
使用 select 语句显示表中的所有记录 -
mysql> select *from DemoTable;
这将产生以下输出 -
+-------+------+-------------+-------------------+ | Name | Age | CountryName | PersonInformation | +-------+------+-------------+-------------------+ | John | 21 | US | John-21-US | | Chris | 22 | AUS | Chris-22-AUS | | Bob | 24 | UK | Bob-24-UK | +-------+------+-------------+-------------------+ 3 rows in set (0.00 sec)
广告