Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL Proficiency Self-Rating
00:00
5 left

SQL Proficiency Self-Rating

EasySQL · PostgreSQL

Problem

How would you rate your SQL proficiency?

Asked in the HR Phone Screen stage. Keep your answer grounded in the data provided and return a concise result set that can be reviewed by the interviewer.

Output

  1. One row per candidate
  2. Columns: candidate_name, sql_proficiency_rating
  3. Include candidates with a recorded rating only
  4. Sort by sql_proficiency_rating from highest to lowest, then candidate_name ascending

Schema

candidate_sql_ratings
ColumnTypeDescription
candidate_idPKINTUnique candidate identifier
candidate_nameVARCHAR(255)Candidate full name
sql_proficiency_ratingINTRecorded SQL proficiency rating on a 1 to 5 scale
interview_stageVARCHAR(100)Interview stage where the rating was captured
feedback_dateDATEDate the feedback was entered
Tablescandidate_sql_ratings
Interviewer

Your question is SQL Proficiency Self-Rating. 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.