Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL Query With Conditions
00:00
5 left

SQL Query With Conditions

EasySQL · PostgreSQL

Problem

Write a SQL query to extract data from a specific table under certain conditions.

Use the maintenance_records table. Return records whose status is Open and priority is High.

Output

  1. Return inspection_id, component_id, inspection_date, and finding.
  2. Include only matching records.
  3. Sort by inspection_date ascending, then inspection_id ascending.

Schema

maintenance_records
ColumnTypeDescription
inspection_idPKINTUnique inspection record identifier
component_idVARCHAR(20)Inspected component identifier
inspection_dateDATEDate of the inspection
statusVARCHAR(20)Current inspection status
priorityVARCHAR(20)Priority assigned to the inspection
findingVARCHAR(255)Inspection finding or observation
Tablesmaintenance_records
Interviewer

Your question is SQL Query With Conditions. 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.