Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL Query with Filtering and Sorting
00:00
5 left

SQL Query with Filtering and Sorting

EasySQL · PostgreSQL

Problem

Select all records from a table where a field is greater than a specified value, and sort the result set in ascending order.

Asked in the OA stage. First SQL question on the online assessment.

Output

  1. Return record_id, record_name, and metric_value for records where metric_value is greater than 50.
  2. Return one row per qualifying record, sorted by metric_value ascending, then record_id ascending to break ties.

Schema

records
ColumnTypeDescription
record_idPKINTUnique record identifier
record_nameVARCHAR(100)Record name
metric_valueINTNumeric field used for filtering and sorting
Tablesrecords
Interviewer

Your question is SQL Query with Filtering and Sorting. 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.