Mysql
 sql >> Database >  >> RDS >> Mysql

mysql query join/inner join

Quanto segue dovrebbe selezionare ciò che stai descrivendo:

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

che equivale a:

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