mysql怎么根据两个外键表的字段查找记录
现有一个记录表record,有两个外键sid,lid,分别对饮的是student,lecture的id,我想要根据student的name,和lecture的name来获...
现有一个记录表record,有两个外键sid,lid,分别对饮的是student,lecture的id,我想要根据student的name,和lecture的name来获取一条记录,该如何实现这样的语句呢
展开
1个回答
展开全部
一种是关联,其中xxx和yyy你自己替换吧
select c.* from student a,lecture b,record c where a.id=c.sid and b.id=c.lid and a.name='xxx' and b.name='yyy'
另一种是嵌套
select * from record where sid in(select sid from student where name='xxx') and lid in (select lid from lecture where name='yyy')
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |