Question: / * [ Q 5 ] What is the most preferred vehicle make in each state? Hint: Use the window function RANK ( ) to

/*[Q5] What is the most preferred vehicle make in each state?
Hint: Use the window function RANK() to rank based on the count of customers for each state and vehicle maker.
After ranking, take the vehicle maker whose rank is 1.*/
SELECT state, vehicle_maker
FROM (
SELECT state, vehicle_maker, RANK() OVER (PARTITION BY state ORDER BY COUNT(*) DESC) AS rnk
FROM new_wheels_sales
GROUP BY state, vehicle_maker
) ranked
WHERE rnk =1;

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!