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.
vehicle_id, vehicle_model, vehicle_type, and operating_regionvehicle_id ascending| Column | Type | Description |
|---|---|---|
| vehicle_idPK | INT | Unique identifier for the vehicle dimension record |
| vehicle_model | VARCHAR(50) | Vehicle model name |
| vehicle_type | VARCHAR(40) | Vehicle classification |
| operating_region | VARCHAR(60) | Region where the vehicle operates |
| is_active | BOOLEAN | Whether the dimension record is currently active |