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'

لاحظ أن مستكشف البيانات لا يقبل علامات الاقتباس المزدوجة كفواصل.