0

データベースに 2 つのテーブルがあります。

  • TableAaIdaBIda3、 ...を含む
  • TableBbId、、、...b2valueを含むb3

aBIdbIdのですtableB

bId のレコードが b2value = 'something' である tableA からすべてのレコードを選択する mysql クエリが必要です...嫌いなクエリ...

4

3 に答える 3

4
select a.* 
from TableA a
inner join TableB b on a.aBid = b.bId
where b.b2Value = 'something'
于 2012-09-19T15:30:24.170 に答える
0

select a.* from TableA a join TableB b on a.aBId = b.bId where b.b2value = 'something'

于 2012-09-19T15:30:42.293 に答える
0
    select * 
    from TableA
    inner join TableB on TableA.aBId = TableB.bId
    where TableB.b2Value = 'something'
于 2012-09-19T15:32:22.373 に答える