MySQL 如何拆分列
要拆分列,您需要在MySQL中使用SUBSTRING_INDEX()函数。让我们首先创建一个表。
mysql> create table DemoTable
-> (
-> Name varchar(40)
-> );
Query OK, 0 rows affected (1.80 sec)
使用插入命令在表中插入一些记录。
mysql> insert into DemoTable values('John_Smith');
Query OK, 1 row affected (0.36 sec)
mysql> insert into DemoTable values('Carol_Taylor');
Query OK, 1 row affected (0.28 sec)
mysql> insert into DemoTable values('David_Miller');
Query OK, 1 row affected (0.54 sec)
使用SELECT语句从表中显示所有记录。
mysql> select *from DemoTable;
这将产生以下输出。
+--------------+
| Name |
+--------------+
| John_Smith |
| Carol_Taylor |
| David_Miller |
+--------------+
3 rows in set (0.00 sec)
以下是在MySQL中拆分列的查询。
mysql> select if(locate('_',Name)=0,'',substring_index(Name, '_', 1)) from DemoTable;
这将产生以下输出。
+---------------------------------------------------------+
| if(locate('_',Name)=0,'',substring_index(Name, '_', 1)) |
+---------------------------------------------------------+
| John |
| Carol |
| David |
+---------------------------------------------------------+
3 rows in set (0.00 sec)
阅读更多:MySQL 教程