Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Working With Dashboards
00:00
5 left

Working With Dashboards

MediumSQL · PostgreSQL

Problem

Tell me about your experience working with dashboards.

For the hands-on portion, write a SQL query that produces a Salesforce CRM Analytics dashboard dataset from the provided tables. Include open opportunities created during Q1 2025, including records without an assigned owner.

Output

  1. One row per owner and calendar month.
  2. Columns: owner_name, report_month, open_opportunity_count, and total_pipeline.
  3. Sort by owner name, then month ascending.

Schema

users
ColumnTypeDescription
user_idPKINTSalesforce user identifier
full_nameVARCHAR(100)User display name
regionVARCHAR(50)User sales region
opportunities
ColumnTypeDescription
opportunity_idPKINTSalesforce opportunity identifier
owner_idINTAssigned Salesforce user identifier
created_atDATEOpportunity creation date
stageVARCHAR(40)Current opportunity stage
amountNUMERIC(12,2)Opportunity pipeline amount
Tablesusersopportunities
Interviewer

Your question is Working With Dashboards. 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.