Phần sau sẽ chọn những gì bạn đang mô tả:
select a.topic
from tableA a
join tableB b on b.id = a.userid
where b.location = 'Australia' -- or whichever location you filter on
tương đương với:
select a.topic
from tableA a
join tableB b on b.id = a.userid and b.location = 'Australia'