MySQL查询按一组数字中的第一个数字排序?

要按一组数字中的第一个数字排序,请使用ORDER BY SUBSTRING_INDEX()。让我们首先创建一个表-

mysql> create table DemoTable

(

   SetOfNumbers text

);

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

mysql> insert into DemoTable values('245,654,76,89,98');

mysql> insert into DemoTable values('2000,567,9090,6789');

mysql> insert into DemoTable values('1001,90595,657,99');

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

mysql> select *from DemoTable;

这将产生以下输出-

+--------------------+

| SetOfNumbers       |

+--------------------+

| 245,654,76,89,98   |

| 2000,567,9090,6789 |

| 1001,90595,657,99  |

+--------------------+

3 rows in set (0.00 sec)

以下是按一组数字中的第一个数字排序的查询-

mysql> select *from DemoTable order by cast(substring_index(SetOfNumbers,',',1) as unsigned);

这将产生以下输出-

+--------------------+

| SetOfNumbers       |

+--------------------+

| 245,654,76,89,98   |

| 1001,90595,657,99  |

| 2000,567,9090,6789 |

+--------------------+

3 rows in set (0.00 sec)

以上是 MySQL查询按一组数字中的第一个数字排序? 的全部内容, 来源链接: utcz.com/z/321664.html

回到顶部