Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Dimension Table Definition
00:00
5 left

Dimension Table Definition

EasySQL · PostgreSQL

Problem

What is a dimension table?

For the practical portion, use the provided Waymo vehicle dimension table. Write a SQL query that returns the descriptive attributes for currently active vehicle records.

Output

  1. One row per active vehicle dimension record
  2. Columns: vehicle_id, vehicle_model, vehicle_type, and operating_region
  3. Exclude inactive records and sort by vehicle_id ascending

Schema

waymo_vehicle_dimension
ColumnTypeDescription
vehicle_idPKINTUnique identifier for the vehicle dimension record
vehicle_modelVARCHAR(50)Vehicle model name
vehicle_typeVARCHAR(40)Vehicle classification
operating_regionVARCHAR(60)Region where the vehicle operates
is_activeBOOLEANWhether the dimension record is currently active
Tableswaymo_vehicle_dimension
Interviewer

Your question is Dimension Table Definition. 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.