在 MySQL 中字段名称的空格之间添加破折号?

mysqlmysqli database

您可以使用 REPLACE() 来实现这一点。让我们首先创建一个表 −

mysql> create table DemoTable1625
    -> (
    -> FullName varchar(20)
    -> );
Query OK, 0 rows affected (0.68 sec)

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

mysql> insert into DemoTable1625 values('John Doe');
Query OK, 1 row affected (0.12 sec)
mysql> insert into DemoTable1625 values('Adam Smith');
Query OK, 1 row affected (0.16 sec)
mysql> insert into DemoTable1625 values('John Smith');
Query OK, 1 row affected (0.17 sec)
mysql> insert into DemoTable1625 values('Carol Taylor');
Query OK, 1 row affected (0.14 sec)

使用 select 语句显示表中的所有记录 −

mysql> select * from DemoTable1625;

这将产生以下输出 −

+--------------+
| FullName     |
+--------------+
| John Doe     |
| Adam Smith   |
| John Smith   |
| Carol Taylor |
+--------------+
4 rows in set (0.00 sec)

以下是在字段名称中的空格之间添加破折号的查询 −

mysql> update DemoTable1625 set FullName=replace(FullName,' ','-');
Query OK, 4 rows affected (0.15 sec)
Rows matched: 4  Changed: 4 Warnings: 0

让我们再次检查表记录 −

mysql> select * from DemoTable1625;

这将产生以下输出 −


+--------------+
| FullName     |
+--------------+
| John-Doe     |
| Adam-Smith   |
| John-Smith   |
| Carol-Taylor |
+--------------+
4 rows in set (0.00 sec)


相关文章