THINKPHP多表查询问题

select表有两个字段(stu_id和class_id),怎么写才能够实现,以stu_id的值为条件查询student表,以class_id的值为条件查询class表。... select表有两个字段(stu_id 和class_id),怎么写才能够实现,以stu_id的值为条件查询student表,以class_id的值为条件查询class表。然后将两个表的值保存到一个数组里面??
我知道大概是用table方法,但是具体不会写。。
展开
 我来答
songyipangbuo
推荐于2017-10-03 · TA获得超过744个赞
知道小有建树答主
回答量:190
采纳率:100%
帮助的人:252万
展开全部
二种方法:
多表查询:

$list=M()->table(array('think_select'=>'this0','think_student'=>'this1','think_class'=>'this2'))
->where('this0.stu_id=this1.id and this0.class_id=this2.id')
->field('this0.id this0_id,this1.id this1_id,this2.id this2_id')->select();
生成sql:
select this0.id this0_id,this1.id this1_id,this2.id this2_id

from think_select this0,think_student this1,think_class this2
where this0.stu_id=this1.id and this0.class_id=this2.id

链接查询:

$list=M()->table("think_select this0")->join('think_student this1 on this0.stu_id=this1.id')
->join('think_class this2 on this0.stu_id=this2.id')
->field('this0.id this0_id,this1.id this1_id,this2.id this2_id')->select();
生成sql:
select this0.id this0_id,this1.id this1_id,this2.id this2_id

from think_select this0 left join think_student this1 on this0.stu_id=this1.id
left join think_class this2 on this0.stu_id=this2.id
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
TableDI
2024-07-18 广告
Excel一键自动匹配,在线免费vlookup工具,3步完成!Excel在线免费vlookup工具,点击93步自动完成vlookup匹配,无需手写公式,免费使用!... 点击进入详情页
本回答由TableDI提供
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式