码迷,mamicode.com
首页 > Web开发 > 详细

Thinkphp 连接查询的使用

时间:2016-06-03 13:01:12      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:

方法一:使用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 连接查询的使用

标签:

原文地址:http://www.cnblogs.com/wangyuman26/p/5555830.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!