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

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在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中怎么进行三个表关联的主要内容,如果未能解决你的问题,请参考以下文章

php thinkphp 现在有模型关联问题

thinkphp在关联模型中三表级联查询

thinkphp5 怎么进行跨库关联查询

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

thinkphp关联模型 condition关联条件怎么用,能说个例子吗

ThinkPHP求助,关联模型查询如何跨表多条件查询