Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Top Job Listings by Engagement

MediumSQL · PostgreSQL00:00
Practice interviewer
In session
5 left
00:00

Your question is Top Job Listings by Engagement. Start with the requirements and the two tables on the right.

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.

Problem

Glassdoor wants to identify the strongest-performing active job listings on its job search surface. Engagement is measured across views, clicks, saves, and applications during January 2025.

Write a PostgreSQL query to return the top 5 active Glassdoor job listings by weighted engagement score.

Requirements

  1. Include only active listings and engagement events from 2025-01-01 through 2025-01-31, inclusive.
  2. Calculate engagement score using weights of 1 for a view, 2 for a click, 3 for a save, and 5 for an application.
  3. Return each listing's title, company, location, total event count, and engagement score. Include active listings with no qualifying events, then sort by score descending, event count descending, and listing ID ascending to break ties.

Schema

job_listings
ColumnTypeDescription
listing_idPKINTUnique job listing identifier
titleVARCHAR(150)Displayed job title
company_nameVARCHAR(150)Employer associated with the listing
locationVARCHAR(100)Job location, which may be undisclosed
is_activeBOOLEANWhether the listing is active
engagement_events
ColumnTypeDescription
event_idPKINTUnique engagement event identifier
listing_idINTJob listing associated with the event
user_idINTUser who generated the event
event_typeVARCHAR(20)Type of engagement action
event_atTIMESTAMPTimestamp when the action occurred
Tablesjob_listingsengagement_events
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results