Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

SQL Inner Join for Matches

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

Your question is SQL Inner Join for Matches. 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

Business Context

Freddie Mac analysts review loan performance records to identify loans that are currently active. The interview environment uses a single performance table for this introductory filtering task.

Task

Write a PostgreSQL query that returns only records where the loan status is Current.

Requirements

  1. Return loan_id, loan_status, and servicer_name.
  2. Include only rows with loan_status = 'Current' and order the results by loan_id in ascending order.

Schema

loan_performance
ColumnTypeDescription
loan_idPKINTEGERUnique Freddie Mac loan identifier
loan_statusVARCHAR(20)Current performance status
servicer_nameVARCHAR(100)Name of the servicing organization
monthly_paymentNUMERIC(10,2)Scheduled monthly payment
Tablesloan_performance
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results