Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

junção de consulta mysql/junção interna


O seguinte deve selecionar o que você está descrevendo:
select a.topic
from tableA a
join tableB b on b.id = a.userid
where b.location = 'Australia' -- or whichever location you filter on

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