Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL for Risk Data Work
00:00
5 left

SQL for Risk Data Work

EasySQL · PostgreSQL

Problem

How much experience do you have with SQL for data extraction and manipulation?

Write a PostgreSQL query using the loan_applications table. Return approved applications with a requested amount of at least 10,000, sorted from the largest requested amount to the smallest.

Output

  1. One row per qualifying application.
  2. Columns: application_id, applicant_id, requested_amount, and status.
  3. Order by requested_amount descending, then application_id ascending for ties.

Schema

loan_applications
ColumnTypeDescription
application_idPKINTUnique identifier for the loan application
applicant_idVARCHAR(20)Identifier for the applicant
requested_amountDECIMAL(12,2)Amount requested in the application
statusVARCHAR(20)Current application status
Tablesloan_applications
Interviewer

Your question is SQL for Risk Data Work. 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.