In this video we will discuss an SQL interview question that was asked in meesho's HackerRank online test.
Google SQL Interview Question:
• Google SQL Interview Question for Dat...
Most Asked Join Based Interview Question:
• Most Asked SQL JOIN based Interview Q...
Data Analyst Spotify Case Study:
• Data Analyst Spotify Case Study | SQL...
Top 10 SQL interview Questions:
• Top 10 SQL interview Questions and An...
Interview Question based on FULL OUTER JOIN:
• SQL Interview Question Based on Full ...
Playlist to master SQL :
• Complex SQL Questions for Interview P...
Rank, Dense_Rank and Row_Number:
• RANK, DENSE_RANK, ROW_NUMBER SQL Anal...
DDL:
create table products
(
product_id varchar(20) ,
cost int
);
insert into products values ('P1',200),('P2',300),('P3',500),('P4',800);
create table customer_budget
(
customer_id int,
budget int
);
insert into customer_budget values (100,400),(200,800),(300,1500);
#sql #businessanalyst #meesho #hackerrank