Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

SQL Join Matching Rows

EasySQL · PostgreSQL00:00
Practice interviewer
In session
5 left
00:00

Your question is SQL Join Matching Rows. Start with the requirements and the one table on the right.

Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.

You need to log in / sign up to run or submit.

Problem

Revature’s QA team needs a quick report of candidates who passed the SQL Fundamentals assessment. Write a PostgreSQL query that returns only the matching assessment records.

Requirements

  1. Return candidates whose assessment_name is SQL Fundamentals and whose result is Passed.
  2. Return the matching rows ordered alphabetically by candidate_name.

Schema

candidate_assessments
ColumnTypeDescription
candidate_idPKINTUnique candidate identifier
candidate_nameVARCHAR(100)Candidate's full name
assessment_nameVARCHAR(100)Name of the assessment
resultVARCHAR(20)Assessment result, which may be pending
completed_onDATEAssessment completion date
Tablescandidate_assessments
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results