如何在 MySQL 中拆分列?
mysqlmysqli database
要拆分列,您需要在 MySQL 中使用 SUBSTRING_INDEX()。让我们首先创建一个表 −
mysql> create table DemoTable -> ( -> Name varchar(40) -> ); Query OK, 0 rows affected (1.80 sec)
使用 insert 命令在表中插入一些记录 −
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)