Data explorer challenge: Generate list of members by location

Talvez eu não entenda a pergunta, mas, se eu entender, então

SELECT u.username
    FROM users u
    LEFT JOIN user_profiles up ON u.id = up.user_id
    WHERE location = 'Pakistan'

ou, igualmente,

SELECT username from user_profiles, users
where user_id = id and location = 'Pakistan'

Note que o Explorador de Dados não aceita aspas duplas como delimitadores.