discuz 查询数据表 多条查询语句合并到一个查询语句方法!!

2021-03-18 939 0条评论


合并前:


$threads = DB::result_first("select count(tid) from ".DB::table("forum_thread")."");
$replies = DB::result_first("select sum(replies) from ".DB::table("forum_thread")."");


合并后

$tr = DB::fetch_first("SELECT count(tid) as tid , sum(replies) as replies FROM ".DB::table("forum_thread")." LIMIT 1");


输出变量

$tr[tid]
$tr[replies]


文章版权及转载声明

本文作者:符文浩 网址:http://blog.fuwenhao.com/post/371.html 发布于 2021-03-18
文章转载或复制请以超链接形式并注明出处。

发表评论

快捷回复:

评论列表 (暂无评论,939人围观)参与讨论

还没有评论,来说两句吧...

取消
微信二维码
微信二维码
支付宝二维码