Top 10 most common SQL queries | SQL Interview Questions For Data Science | CampusX Live 1

preview_player
Показать описание
This is part 1 of a 3 part live lecture series on SQL Interview Questions for Data Science
Download data

Рекомендации по теме
Комментарии
Автор

@07:35 - Start
@11:52 - Common questions

utkar
Автор

in question 8 we could simply do SELECT name, genre, score FROM movies GROUP BY genre HAVING Max(score) ;

sid_x_
Автор

At 27:00 there for second highest value query, there is another movie with 8.9 rating.
It is not included in the result.
The below query would handle this case.
SELECT * FROM movies WHERE score = (SELECT score FROM movies ORDER BY score DESC LIMIT 1, 1)

tushartiwari
Автор

I revised through this series and cracked a product based company. Thank you so much sir

uditbhaskar
Автор

One of the best channel to learn about Data science technology ✨ Nitin you try to explain things with your best effort and make it so simple to understand ❤️ Many thanks for such valuable contents ✨

binarystar
Автор

1:02:21 group by genre, score and then order by score desc limit 1

anshvashisht
Автор

One of the best channels for SQL, learned a lot thanks :)

shwetarawat
Автор

sir your content is always awe some, , , when i come here to learn something to learn i become fully satishfied with the kowledge whick you deliver in a very simple laguage .. and your vidios has always a practical tone .. thank you!

pravinshende.DataScientist
Автор

Sir bhahot hi samj aaya....
Sir, aisa laga ki ek non CS Student also play with data ad these all game....i so like it...sir

paragvachhani
Автор

With CTE as (select *, row_number() over(partition by col1, col2, ... col n order by null) as rn from table)

Delete from cte where rn > 1;

lukechugh
Автор

If you make play list of SQL like machine learning. It will be very helpful.

KaranSingh-hxdh
Автор

Awesome way of teaching sql query building techniques. Thank you so much

PreetiSoni-ce
Автор

for second question: when additional column was added with NOT NULL constraint the table after that had null values in those columns for the existing data.

ashwinshetgaonkar
Автор

Sir, very nice. I am in very much need of SQL real live project. And working.

KaranSingh-hxdh
Автор

Thank you very much sir 😊
You are my big brother 💝

beingcheercool
Автор

2nd lowest rated -
Select * from movies order by scores asc limit 2, 1

killshot
Автор

first and secound question add multiple rows rahega sir column nhi kyu ki rows horizontal mai arheta hai aur column vertical

shantanu
Автор

it feels so good when your subscribers are increasing ❤️

not_amanullah
Автор

Sir, The way you teach us is just Amazing!! Thank you soo much!! May your channel achieve more and more milestones and reach millions very soon!!

amLife
Автор

your all of the videos deserves a like

kali