Mysql
 sql >> Base de données >  >> RDS >> Mysql

mysql query join/inner join

Les éléments suivants doivent sélectionner ce que vous décrivez :

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

ce qui équivaut à :

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