Summary
Keywords
Full Transcript
In this video we are going to discuss a SQL problem asked in Airbnb interview. The problem is called as Most Popular Room Types. In this problem we will learn how to convert comma separated values into row. Zero to hero(Advance) SQL Aggregation: https://youtu.be/5Ighj_2PGV0 Most Asked Join Based Interview Question: https://youtu.be/xR87ctOgpAE Solving 4 Trick SQL problems: https://youtu.be/Ck1gQrlS5pQ Data Analyst Spotify Case Study: https://youtu.be/-YdAIMjHZrM Top 10 SQL interview Questions: https://youtu.be/Iv9qBz-cyVA Interview Question based on FULL OUTER JOIN: https://youtu.be/KQfWd6V3IB8 Playlist to master SQL : https://youtube.com/playlist?list=PLBTZqjSKn0IeKBQDjLmzisazhqQy4iGkb Rank, Dense_Rank and Row_Number: https://youtu.be/xMWEVFC4FOk script: create table airbnb_searches ( user_id int, date_searched date, filter_room_types varchar(200) ); delete from airbnb_searches; insert into airbnb_searches values (1,'2022-01-01','entire home,private room') ,(2,'2022-01-02','entire home,shared room') ,(3,'2022-01-02','private room,shared room') ,(4,'2022-01-03','private room') ; #sql #airbnb #interview
