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

ThinkPHP join() table()方法的使用,多表查询

时间:2017-12-25 13:45:25      阅读:239      评论:0      收藏:0      [点我收藏+]

标签:查询   post   use   href   clip   tar   boa   prefix   cli   

table

[php] view plain copy
 
  1.       
  2. $list = M()->table(‘user1 a, user2 b‘)->where(‘a.id = b.id‘)->field(‘a.name,b.sex‘)->order(‘a.id desc‘)->select();  
join
[php] view plain copy
 
  1. $pre = C(‘DB_PREFIX‘);  
  2. M("user u")->join("{$per}user_info x ON x.uid = u.id")->where("u.id = $uid")->find();  
 
另外,两个表中若有同名字段都要查询的话,用这样的写法: filed(‘a.*,b.name as username,b.sex‘)

记录官网的一篇教程
http://www.thinkphp.cn/topic/9332.html

ThinkPHP join() table()方法的使用,多表查询

标签:查询   post   use   href   clip   tar   boa   prefix   cli   

原文地址:http://www.cnblogs.com/jamescr7/p/8108574.html

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