Data Analyst Interview Resources
51.3K subscribers
254 photos
1 video
51 files
317 links
Join our telegram channel to learn how data analysis can reveal fascinating patterns, trends, and stories hidden within the numbers! 📊

For ads & suggestions: @love_data
Download Telegram
One of the most common interview question in #sql round. What is the order of execution of the below #query:

""""Query""""""

Select product_id,
product_rank
(
SELECT product_id,
rank() over(order by total_sales_amount desc) as product_rank
FROM sales_info
)
WHERE product_rank <= 5
order by product rank desc;
👍83