They asked some tricky SQL questions to test real problem-solving skills.
👉 The big question is:
Take the challenge, test your SQL skills, and see if you’ve got what it takes to ace interviews at top companies like Meesho!
You have two tables:
Customers(cust_id, cust_name)
Orders(order_id, cust_id, product_id)
Products(product_id, product_name)
Write a query to find customers who have purchased all products available in the Products table
Q5. Find the Second Highest Salary (without using LIMIT or TOP directly)
You have a table Employees(emp_id, name, salary).
Write a query to find the second highest salary in the company.