gpt4 book ai didi

php - 如何获得 my_hit count 和 more_info 的 SUM

转载 作者:行者123 更新时间:2023-11-30 00:34:52 25 4
gpt4 key购买 nike

这是我的 table 。

My Table

这是我到目前为止所拥有的一切,一切正常,但是......唯一的问题是我也需要 more_info 列的总数。我该怎么办?

SELECT *, SUM(hit_count) as 'view_count'
FROM $table_name
WHERE create_date >='".$fromdate."'
AND create_date<='".$todate."'
AND post_author ='".$_POST['pps_user_id']."'
GROUP BY post_id desc

我们正在获取 hit_count 的总数,但我还想获取 more_info 区域中每个不同 jsn 字符串的总数,并在按 post_id desc 分组时输出该总数

最佳答案

不确定这是否回答了您的问题,但您可以使用 SUBSTRING_INDEX 解析这些值,如下所示

SELECT post_id,jsn_string,SUM(jsn_count) as jsn_count
FROM
(SELECT post_id,
SUBSTRING_INDEX(SUBSTRING_INDEX(more_info,'"',4),'"',-1) as jsn_string,
SUBSTRING_INDEX(more_info,':',-3) + 0 as jsn_count
FROM yourtable
UNION All
SELECT post_id,
SUBSTRING_INDEX(SUBSTRING_INDEX(more_info,'"',8),'"',-1) as jsn_string,
SUBSTRING_INDEX(more_info,':',-1) + 0 as jsn_count
FROM yourtable
)T1
WHERE jsn_string != ''
GROUP BY post_id,jsn_string

sqlFiddle

关于php - 如何获得 my_hit count 和 more_info 的 SUM,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22261077/

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