Leetcode SQL Interview Questions | Practise SQL questions

preview_player
ะŸะพะบะฐะทะฐั‚ัŒ ะพะฟะธัะฐะฝะธะต
๐–๐š๐ง๐ญ ๐ญ๐จ ๐Œ๐š๐ฌ๐ญ๐ž๐ซ ๐’๐๐‹? ๐‹๐ž๐š๐ซ๐ง ๐’๐๐‹ ๐ญ๐ก๐ž ๐ซ๐ข๐ ๐ก๐ญ ๐ฐ๐š๐ฒ ๐ญ๐ก๐ซ๐จ๐ฎ๐ ๐ก ๐ญ๐ก๐ž ๐ฆ๐จ๐ฌ๐ญ ๐ฌ๐จ๐ฎ๐ ๐ก๐ญ ๐š๐Ÿ๐ญ๐ž๐ซ ๐œ๐จ๐ฎ๐ซ๐ฌ๐ž - ๐’๐๐‹ ๐‚๐ก๐š๐ฆ๐ฉ๐ข๐จ๐ง๐ฌ ๐๐ซ๐จ๐ ๐ซ๐š๐ฆ ๐›๐ฒ ๐’๐ฎ๐ฆ๐ข๐ญ ๐’๐ข๐ซ!

"๐€ 8 ๐ฐ๐ž๐ž๐ค ๐๐ซ๐จ๐ ๐ซ๐š๐ฆ ๐๐ž๐ฌ๐ข๐ ๐ง๐ž๐ ๐ญ๐จ ๐ก๐ž๐ฅ๐ฉ ๐ฒ๐จ๐ฎ ๐œ๐ซ๐š๐œ๐ค ๐ญ๐ก๐ž ๐ข๐ง๐ญ๐ž๐ซ๐ฏ๐ข๐ž๐ฐ๐ฌ ๐จ๐Ÿ ๐ญ๐จ๐ฉ ๐ฉ๐ซ๐จ๐๐ฎ๐œ๐ญ ๐›๐š๐ฌ๐ž๐ ๐œ๐จ๐ฆ๐ฉ๐š๐ง๐ข๐ž๐ฌ ๐›๐ฒ ๐๐ž๐ฏ๐ž๐ฅ๐จ๐ฉ๐ข๐ง๐  ๐š ๐ญ๐ก๐จ๐ฎ๐ ๐ก๐ญ ๐ฉ๐ซ๐จ๐œ๐ž๐ฌ๐ฌ ๐š๐ง๐ ๐š๐ง ๐š๐ฉ๐ฉ๐ซ๐จ๐š๐œ๐ก ๐ญ๐จ ๐ฌ๐จ๐ฅ๐ฏ๐ž ๐š๐ง ๐ฎ๐ง๐ฌ๐ž๐ž๐ง ๐๐ซ๐จ๐›๐ฅ๐ž๐ฆ."

๐‡๐ž๐ซ๐ž ๐ข๐ฌ ๐ก๐จ๐ฐ ๐ฒ๐จ๐ฎ ๐œ๐š๐ง ๐ซ๐ž๐ ๐ข๐ฌ๐ญ๐ž๐ซ ๐Ÿ๐จ๐ซ ๐ญ๐ก๐ž ๐๐ซ๐จ๐ ๐ซ๐š๐ฆ -

๐–๐š๐ง๐ญ ๐ญ๐จ ๐ฅ๐ž๐š๐ซ๐ง ๐๐ข๐  ๐ƒ๐š๐ญ๐š ๐›๐ฒ ๐’๐ฎ๐ฆ๐ข๐ญ ๐’๐ข๐ซ?
๐œ๐ก๐ž๐œ๐ค๐จ๐ฎ๐ญ ๐ญ๐ก๐ž ๐›๐ข๐  ๐๐š๐ญ๐š ๐œ๐จ๐ฎ๐ซ๐ฌ๐ž ๐๐ž๐ญ๐š๐ข๐ฅ๐ฌ

I have trained over 20,000+ professionals in the field of Data Engineering in the last 5 years.

Leetcode SQL Interview Questions | Practise SQL questions

182. Duplicate Emails
183. Customers Who Never Order

Do Like, Comment & Subscribe ..

๐—๐—ผ๐—ถ๐—ป ๐—บ๐—ฒ ๐—ผ๐—ป ๐—ฆ๐—ผ๐—ฐ๐—ถ๐—ฎ๐—น ๐— ๐—ฒ๐—ฑ๐—ถ๐—ฎ:๐Ÿ”ฅ

In this video, we will solve SQL question on LeetCode. LeetCode is an excellent platform for practicing SQL Queries. The SQL Questions on LeetCode are framed pretty similar to how they are asked on SQL Interviews hence solving SQL questions on LeetCode can give you a good hands on experience on solving real world SQL questions.

#SQL #RDBMS #database #bigdata #dataengineering
ะ ะตะบะพะผะตะฝะดะฐั†ะธะธ ะฟะพ ั‚ะตะผะต
ะšะพะผะผะตะฝั‚ะฐั€ะธะธ
ะะฒั‚ะพั€

with cte as(select email, row_number() over(partition by email order by email) as rn from person)
select distinct email from cte where rn > 1;

sakshijain
ะะฒั‚ะพั€

Very Informative ๐Ÿ‘
Continue this series as it will help a lot to people looking to crack data analyst interview.

abhisheksuman
ะะฒั‚ะพั€

Thanks for very nice explanation..
Waiting for the premium questions

mallikarjunpatil
ะะฒั‚ะพั€

#duplicate email.You don't need to write a derived table. You can do it one email.
"Select email from table_name
group by 1
Having count(*)> 1"

mohammadshahfaishal
ะะฒั‚ะพั€

able to solve sql problems on my own now :)

arunsundar
ะะฒั‚ะพั€

I got this question in one of the interviews last week. You are just late by few days ๐Ÿ˜…. Just kidding! Incredible content Sumit sir.

shivangikhanna
ะะฒั‚ะพั€

Thanks for this video sir.
Alternate solution using Partition :
SELECT DISTINCT email FROM
(SELECT email, COUNT(email) OVER (PARTITION BY email) AS part
FROM Person) AS temp
WHERE temp.part > 1;

Sir, could you please explain - is there any performance differentiation between the above query and the query shown in video.
Thank You!

Anonymous_it_is
ะะฒั‚ะพั€

I think this is more simpler way
SELECT email
FROM person
GROUP BY email
HAVING COUNT(email) > 1;

vijaybabukommuri
ะะฒั‚ะพั€

select name from customers where id not in(select customerID from orders)

manoharmanu
ะะฒั‚ะพั€

select name as Customers from Customers
where id not in (select customerId from Orders group by customerId)

vijaybabukommuri
ะะฒั‚ะพั€

select Customers.name as "Customers" from Customers join Orders ON Customers.id != Orders.customerid;

Can someone point out where i am doing wrong?

pragyajaiswal
ะะฒั‚ะพั€

select email FROM Person GROUP BY email HAVING COUNT(id)>1;

select name as Customers FROM Customers LEFT JOIN Orders ON Customers.
id=Orders.CustomerID where CustomerId is null;

HARSHRAJ-gpve
visit shbcf.ru