thinkphp关联查询(多表查询)
php吧
全部回复
仅看楼主
level 7
THINKPHP 中关联查询(多表查询)可以使用 table() 方法或和join方法,请看示例:
1、table()
$list = $user->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();
2、join()
$user = new Model('user');
$list = $user->join('RIGHT JOIN user_profile ON user_stats.id = user_profile.typeid' );
3、原生查询
$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);
2014年05月08日 06点05分 1
level 13
早会了没啥用
2014年05月08日 11点05分 3
我最近做的项目有用到
2014年05月13日 09点05分
回复 天涯love土豆 :哦,
2014年05月13日 09点05分
level 8
秀操作?
2014年05月08日 12点05分 4
level 14
经验分享 很好阿
2014年05月08日 12点05分 5
level 5
挺好的
2014年05月08日 14点05分 6
1