gpt4 book ai didi

mysql - 按子串分组

转载 作者:可可西里 更新时间:2023-11-01 06:32:19 24 4
gpt4 key购买 nike

我有一个文本字段,如“/site/index?sid=18&sub=321333&tid=site.net&ukey=1234543254”。

如何按字符串的一部分(例如 'sid' url 参数)对其进行分组?
并且参数可能有不同的顺序。(sid 在行尾等)

最佳答案

看看 MySQL 字符串函数:

http://dev.mysql.com/doc/refman/5.0/en/string-functions.html

特别是这看起来很有帮助:

http://dev.mysql.com/doc/refman/5.0/en/string-functions.html#function_substring-index

更新

这正是您所要求的:

SELECT SUBSTRING_INDEX(SUBSTRING_INDEX("/site/index?sid=18&sub=321333&tid=site.net&ukey=1234543254", 'sid=', -1), '&', 1) AS this_will_be_grouped

并在查询的 GROUP BY 子句中使用 this_will_be_grouped

关于mysql - 按子串分组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11503393/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com