Company: jubilant_31aug
Difficulty: medium
Problem Description You are tasked with generating a report of the top qualified freelancer profiles on a freelance platform. A freelancer is considered qualified if they have a verified profile and a high Job Success Score (JSS). Schema Table: profiles Column Name Data Type Description id SMALLINT Unique ID, primary key first_name VARCHAR(255) First name of the freelancer last_name VARCHAR(255) Last name of the freelancer email VARCHAR(255) Email address of the freelancer is_verified SMALLINT Verification status (1 = True, 0 = False) Table: stats Column Name Data Type Description profile_id SMALLINT Foreign key referencing profiles.id . Each profile has at most one record. job_success_score SMALLINT The freelancer's job success score (JSS) Required Output Your query should return a result set with the following columns in exact order: first_name last_name email job_success_score Constraints or Notes Only include profiles that are verified ( is_verified = 1 ). Only include profiles wit