首页 > 代码库 > thinkphp中如何是实现多表查询
thinkphp中如何是实现多表查询
多表查询经常使用到,但如何在thinkphp中实现多表查询呢,其实有三种方法。
1 2 3 4 5 6 7 8 9 10 11 12 | // 1、原生查询示例: $Model = new Model(); $sql = ‘select a.id,a.title,b.content from think_test1 as a, think_test2 as b where a.id=b.id ‘ . $map . ‘ order by a.id ‘ . $sort . ‘ limit ‘ . $p ->firstRow. ‘,‘ . $p ->listRows; $voList = $Model ->query( $sql ); // 2、join()方法示例: $user = new Model( ‘user‘ ); $list = $user ->join( ‘RIGHT JOIN user_profile ON user_stats.id = user_profile.typeid‘ ); // 3、table()方法示例: $list = $user ->table( ‘user1 a, user2 b‘ )->where( ‘a.id = b.id‘ ) ->field( ‘name,sex‘ )->order( ‘id desc‘ )->select(); |
thinkphp中如何是实现多表查询
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。