ThinkPHP常用的两个多表查询方法,table() join() table [php] view plain copy $list = M()->table('user1 a, user2 b')->where('a.id = b.id')->field('a.name,b.sex')->or ...
分类:
Web程序 时间:
2017-12-25 13:45:25
阅读次数:
239
语法join(mixedjoin[,mixed$condition=null[,string$type=‘INNER‘]])示例别名Db::table(‘think_artist‘)
->alias(‘a‘)
->join(‘think_workw‘,‘a.id=w.artist_id‘)
->join(‘think_cardc‘,‘a.card_id=c.id‘)
->select();Db::table(‘think_artist‘)
->alias(‘a‘)
-..
分类:
Web程序 时间:
2017-02-10 00:08:12
阅读次数:
205
ThinkPHP模型类?比较常用的两个方法,table() join() ThinkPHP模型类?比较常用的两个方法,table() join() table 1 $list = M()->table('user1 a, user2 b')->where('a.id = b.id')->field( ...
分类:
Web程序 时间:
2016-09-09 10:16:13
阅读次数:
230
$res2 = M('stat_info a') ->join(C('DB_PREFIX').'stock b ON a.goods_id = b.goods_id') ->field('a.*,b.goods_sn,b.goods_name,b.goods_barcode') ->select() ...
分类:
Web程序 时间:
2016-09-03 19:35:37
阅读次数:
415
1 public function test ( ) 2 { 3 $User = M('authlist'); 4 $rs = $User->join('wifi_shop on wifi_authlist.shopid = wifi_shop.id')->field(' 5 wifi_authli
分类:
Web程序 时间:
2016-02-24 14:16:56
阅读次数:
173
1 $model = M();// 表名必须是完整的表名,如果有前缀,要加前缀2 $count = $model->table('wx_wxusers_purview p')->join('wx_wxusers u on p.openId=u.openid')->where($joinWhere)-...
分类:
Web程序 时间:
2014-11-06 19:05:31
阅读次数:
233