Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

/ * [ 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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Bioinformatics Databases And Systems

Authors: Stanley I. Letovsky

1st Edition

1475784058, 978-1475784053

More Books

Students also viewed these Databases questions