如何在 MySQL 中分割一个数字查询结果?
要分割一个数字查询结果,你可以在 MySQL 中使用 CONCAT() 函数。我们首先创建一个表 −
mysql> create table DemoTable ( StudentId int ); Query OK, 0 rows affected (0.68 sec)
现在你可以使用 insert 命令向表中插入一些记录 −
mysql> insert into DemoTable values(2222); Query OK, 1 row affected (0.18 sec) mysql> insert into DemoTable values(5555); Query OK, 1 row affected (0.13 sec) mysql> insert into DemoTable values(4567); Query OK, 1 row affected (0.13 sec) mysql> insert into DemoTable values(8905); Query OK, 1 row affected (0.15 sec)
使用 select 语句显示表中的所有记录 −
mysql> select *from DemoTable;
输出
+-----------+ | StudentId | +-----------+ | 2222 | | 5555 | | 4567 | | 8905 | +-----------+ 4 rows in set (0.00 sec)
以下是分割数字查询结果的查询。此处,我们分割了值的第一个数字 −
mysql> select concat(left(StudentId, 1), '/',right(StudentId, length(StudentId)-1)) splitNumericalValue from DemoTable;
输出
+---------------------+ | splitNumericalValue | +---------------------+ | 2/222 | | 5/555 | | 4/567 | | 8/905 | +---------------------+ 4 rows in set (0.00 sec)
广告