Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Your Fit for the Role
00:00
5 left

Your Fit for the Role

EasySQL · PostgreSQL

Problem

What analytics software are you trained in and to what level?

Using the supplied PostgreSQL tables, write a query that returns the analytics software recorded for analyst 101 and the associated training level. Include only software with a matching training record.

Output

  1. One row per trained software tool
  2. Columns: software_name, proficiency_level, training_status
  3. Order by proficiency from highest to lowest, then software name alphabetically

Schema

analytics_software
ColumnTypeDescription
software_idPKINTUnique identifier for an analytics software product
software_nameVARCHAR(100)Name of the analytics software product
vendorVARCHAR(100)Software vendor
analyst_training
ColumnTypeDescription
training_idPKINTUnique training record identifier
analyst_idINTIdentifier for the analyst
software_idINTReferenced analytics software identifier
proficiency_levelVARCHAR(30)Recorded proficiency level
training_statusVARCHAR(30)Source training status, if recorded
Tablesanalytics_softwareanalyst_training
Interviewer

Your question is Your Fit for the Role. Start with the requirements and the two tables 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.