आप जो वर्णन कर रहे हैं उसका चयन निम्नलिखित करना चाहिए:
select a.topic
from tableA a
join tableB b on b.id = a.userid
where b.location = 'Australia' -- or whichever location you filter on
जो इसके बराबर है:
select a.topic
from tableA a
join tableB b on b.id = a.userid and b.location = 'Australia'