我的数据库中有2个表:
TableA
包含aId
,aBId
,a3
,... TableB
包含bId
,b2value
,b3
,... aBId
是bId
的{{1}}。
我需要一个mysql查询来选择tableA中的所有记录,其中来自bId的记录有b2value ='something'... 讨厌查询...
答案 0 :(得分:4)
select a.*
from TableA a
inner join TableB b on a.aBid = b.bId
where b.b2Value = 'something'
答案 1 :(得分:0)
从TableA中选择a。* a.aBId = b.bId中的连接TableB b b.b2value ='something'
答案 2 :(得分:0)
select *
from TableA
inner join TableB on TableA.aBId = TableB.bId
where TableB.b2Value = 'something'