gpt4 book ai didi

php - 搜索最多的词 MYSQL

转载 作者:太空宇宙 更新时间:2023-11-03 12:16:27 25 4
gpt4 key购买 nike

我有一个 MySQL 表,用于记录每个访问者的搜索词。有时是一个单词,有时是多个单词。在我的后端,我想列出搜索次数最多的词 desc limit x

当然,我可以用 PHP 来完成,但我想知道它是否也可以用 MySQL 来完成。

search_string
--------------
Hotel in Berlin
Paris
New York
Grand Hotel Principe
Royal Myconian Resort Thalasso Spa
Spa Resort

我知道像纽约这样的城市可以分为纽约和纽约,但是忽略这个。

感谢您的帮助!

最佳答案

可以在单个查询中执行此操作,但您必须假设最大字数。

select word, count(*) as cnt
from (select substring_index(substring_index(search_string, ' ', n.n), ' ', -1) as word
from searches s cross join
(select 1 as n union all select 2 union all select 3 union all select 4 union all select 5
) n
where length(replace(search_string, ' ', ' x')) - length(search_string) <= n
) w
group by word
order by cnt desc;

substring_index() 的嵌套调用返回列表中的“第 n 个”单词。 where 子句至少验证列表中有多少单词。

关于php - 搜索最多的词 MYSQL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21910161/

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