Mysql
 sql >> Datenbank >  >> RDS >> Mysql

MySQL-Abfrage-Join/Inner-Join

Folgendes sollte auswählen, was Sie beschreiben:

select a.topic
from tableA a
join tableB b on b.id = a.userid
where b.location = 'Australia' -- or whichever location you filter on

was äquivalent ist zu:

select a.topic
from tableA a
join tableB b on b.id = a.userid and b.location = 'Australia'