Berikut ini harus memilih apa yang Anda gambarkan:
select a.topic
from tableA a
join tableB b on b.id = a.userid
where b.location = 'Australia' -- or whichever location you filter on
yang setara dengan:
select a.topic
from tableA a
join tableB b on b.id = a.userid and b.location = 'Australia'