Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Writing SQL Queries

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

Your question is Writing SQL Queries. 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

Curriculum Associates needs a quick extract from i-Ready Diagnostic results for reviewing strong Spring 2025 performance. Write a PostgreSQL query using only the iready_diagnostic_results table.

Requirements

  1. Return students whose administration is Spring 2025 and whose diagnostic_score is at least 500.
  2. Sort the results by diagnostic_score descending, then by student_id ascending to make ties deterministic.

Schema

iready_diagnostic_results
ColumnTypeDescription
student_idINTStudent identifier
student_nameVARCHAR(100)Student name
school_nameVARCHAR(100)School name
administrationVARCHAR(30)i-Ready Diagnostic administration period
diagnostic_scoreINTOverall diagnostic scale score
assessment_dateDATEDate the assessment was completed
Tablesiready_diagnostic_results
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results