Data explorer challenge: Generate list of members by location

質問の意味が分からないのかもしれませんが、もしそうなら、

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

または、同様に、

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

データエクスプローラーでは、区切り文字として二重引用符を受け付けないことに注意してください。