gpt4 book ai didi

php - MySQL 存储函数和 php

转载 作者:行者123 更新时间:2023-11-29 03:32:54 25 4
gpt4 key购买 nike

所以我有这个查询来获取所有帖子

select id, title 
from posts
where type = 'article'

我有一个存储函数,可以计算总观看次数并返回结果

我知道我可以像这样执行它

select totalView(id)

但是我如何合并这两个查询以返回所有帖子以及每个帖子的总 View

也许是这样的

select id, title, totalView(id) as total 
from posts
where type = 'article'

谢谢。

最佳答案

select count(*) as total, id, title from posts where type = 'article'

编辑:它将计算 $id 的所有行

select count(*) as total, id, title from posts where type = 'article' AND id = $id;

关于php - MySQL 存储函数和 php,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27757359/

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