Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL Join Matching Rows
00:00
5 left

SQL Join Matching Rows

EasySQL · PostgreSQL

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
Interviewer

Your question is SQL Join Matching Rows. Start with the requirements and the one table in the Question tab.

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.
CodePostgreSQL
You need to log in / sign up to run or submit.Ln 1
Run your query to see results here.