thinkphp 关联查询 怎么统计关联表查出来的数据数量

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了thinkphp 关联查询 怎么统计关联表查出来的数据数量相关的知识,希望对你有一定的参考价值。

现在有两个表 一个scholl表字段有 id school_name 一个mat表字段有id school_id mat_name
现在该怎么写关联查询能把两个相关联表的数据查询输出来的同时也 输出统计mat表中相关联的school_id的数量

参考技术A select count(m.school_id) as sid,s.school_name,m.mat_name
from school as s
left join mat as m
on s.id = m.school_id

闲的无聊,回答问题,手机手打,打错-_-||自己排错本回答被提问者采纳

在thinkphp中怎么进行三个表关联

<?php
namespace Dome\\Model;
use Think\\Model\\ViewModel;
Class AbcViewModel extends ViewModel
protected $viewField=array(
\'A\'=>array(\'id\',\'xx\',\'xx\'),
\'B\'=>array(\'bx\',\'bxx\',\'_on\'=>\'B.pid=A.pid\'),
\'C\'=>array(\'cx\',\'cxx\',\'_on\'=>\'C.pid=A.pid\'),
);
参考技术A 用模型还是JOIN或者VIEW

以上是关于thinkphp 关联查询 怎么统计关联表查出来的数据数量的主要内容,如果未能解决你的问题,请参考以下文章

SQL关联两张表查数据,结果只显示一条。

SQL关联两张表查数据,结果只显示一条。

thinkphp利用模型关联来做关联统计

thinkphp5 怎么进行跨库关联查询

在thinkphp中怎么进行三个表关联

thinkphp 关联模型和视图模型的区别?