ThinkPHP多表联合查询的常用方法

前端之家收集整理的这篇文章主要介绍了ThinkPHP多表联合查询的常用方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

ThinkPHP中关联查询(即多表联合查询)可以使用 table() 方法或和join方法,具体使用如下例所示:

1、原生查询示例:

代码如下:
firstRow.','.$p->listRows; $voList = $Model->query($sql);

2、join()方法示例:

代码如下:
join('RIGHT JOIN user_profile ON user_stats.id = user_profile.typeid' );

3、table()方法示例:

代码如下:
table('user_status stats,user_profile profile')->where('stats.id = profile.typeid')->field('stats.id as id,stats.display as display,profile.title as title,profile.content as content')->order('stats.id desc' )->select();

更多关于thinkPHP相关内容感兴趣的读者可查看本站专题:《》、《》、《》、《》及《PHP模板技术总结》。

希望本文所述对大家基于ThinkPHP框架的PHP程序设计有所帮助。

原文链接:https://www.f2er.com/thinkphp/24326.html

猜你在找的ThinkPHP相关文章