Thinkphp 连接查询的使用
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Thinkphp 连接查询的使用相关的知识,希望对你有一定的参考价值。
方法一:使用table()方法
$tables = ‘b_order ordert, b_busbid busbid‘; $map[‘busbid.buscompanyid‘] = 1; $map[‘busbid.status‘] = 1; $map[‘_string‘] = ‘ordert.id = busbid.orderid‘; $result = M()->table($tables)->where($map)->field(‘busbid.*‘)->select();
方法二:使用join() 方法
以上是关于Thinkphp 连接查询的使用的主要内容,如果未能解决你的问题,请参考以下文章