SQL Interview Questions For Data Scientists And Data Engineers - Tips For Practicing SQL Interviews

  Рет қаралды 52,919

Seattle Data Guy

Seattle Data Guy

Күн бұрын

Пікірлер: 91
@gatorpika
@gatorpika Жыл бұрын
Damn, been writing SQL for years and just starting to use more CTEs in the past year instead of subqueries, but never realized that you could make the second query dependent on the results of the first. That's huge! Clicked all the thumbs and bells and stuff.
@SeattleDataGuy
@SeattleDataGuy Жыл бұрын
Thanks for clicking all the things! Hope you find more helpful things!
@naheliegend5222
@naheliegend5222 2 жыл бұрын
SQL is so underrated. Could not imaging how do to my job without it.
@SeattleDataGuy
@SeattleDataGuy 2 жыл бұрын
SQL is always clutch! I love it and probably over use it haha.
@alexjenkins8026
@alexjenkins8026 11 ай бұрын
@12:14 Closest SAT Scores... You do not need to do a "join of all possible combinations of students" - this is completely overkill since you know the person with the best score and lowest score can't possible have the smallest difference in scores. More generally, any pair of students with another student between them in the rankings can't possibly be the smallest difference in scores. Therefore, instead of doing this crazy expensive join, we can just use LEAD or LAG to get the scores of the NEXT/PREVIOUS score: WITH diff AS ( SELECT student AS one_student, LEAD(student) OVER (ORDER BY score) AS other_student, ABS(score - LEAD(score) OVER (ORDER BY score)) AS score_diff FROM scores ) SELECT one_student, other_student, score_diff FROM diff WHERE score_diff IS NOT NULL ORDER BY score_diff ASC, LEAST(one_student, other_student) ASC LIMIT 1; As a final note, you cannot use the < join as simply as you stated, because the names of the students might be the wrong way around (one_student might be James and other_student might be Alice for one pair and Bob and Sam for the other - but will be ordered Bob first and James second). You've solved this by joining EVERY pair together so you have a (James, Alice) pair and a (Alice James) pair but this is doubling the computation requirements - which is terrible. I've solved this with a LEAST(name1,name2) in the ORDER BY so that the name "higher in the alphabet" is retrievable from either variable.
@arund1030
@arund1030 27 күн бұрын
It is impressive how the 2nd answer for the 1st question achieves the same thing, although having an entire different approach. For me, as soon as I read the question, my mind immediately created a rough solution similar to the 1st answer. Guess trying to answer a question with different statements or clauses helps one understand SQL with more grip.
@subimalkhatua2886
@subimalkhatua2886 2 жыл бұрын
for second question you could have easily used a mix of dense_rank and row_number ------------> dense_rank() over(partition by user_id order by song_id) r_in_sng ,row_number () over(partition by user_id,song_id order by created_at) r_in_grp ----------> where r_in_sng = 3 and r_in_grp = 1
@FebbyTV
@FebbyTV 2 жыл бұрын
Great vid. One minor thing - please don't teach people to name their CTEs t1, t2,t3 etc or alias their tables in joins with t1,t2,t3. In my opinion you should always try to give the CTEs names that somewhat can explain whats going on.
@rimvydasposkus5617
@rimvydasposkus5617 2 жыл бұрын
Yeah, same. Then you have such queries on your Work place is headache to read!
@jsonify
@jsonify 2 жыл бұрын
Thanks for putting this out. I heard you on Ken's Nearest Neighbors this past week and it was great to hear more of your backstory. Seattle for the win!!!
@SeattleDataGuy
@SeattleDataGuy 2 жыл бұрын
I am so glad you got to see it! Thanks for the comment
@shreykhetrapal9585
@shreykhetrapal9585 2 жыл бұрын
This was really helpful, specially the join on last problem was a fantastic approach
@SeattleDataGuy
@SeattleDataGuy 2 жыл бұрын
Thank you! I am glad you found it helpful!
@mirli33
@mirli33 2 жыл бұрын
This is really coool. I like the 1st problem you solved using group by clause. it never occur to me before. I hope you will continue to publish more sql problems.
@SeattleDataGuy
@SeattleDataGuy 2 жыл бұрын
Glad you enjoyed it! We shall see, I might have to do more! It's always fun to walk through. Maybe next time I can get someone to do better animations.
@GuyThompsonFWTX
@GuyThompsonFWTX 2 жыл бұрын
Personal nit-picky thing, I think in learning and training it's a really good practice to use 'AS' to show that you're using an alias. Again, this isn't something you need to do all the time, but for those unfamiliar with writing and reading SQL, I think it's a big help in understanding the syntax.
@SeattleDataGuy
@SeattleDataGuy 2 жыл бұрын
Totally accurate statement. Fun fact, most people at meta would just right NIT before a nit-picky comment. We got rid of a lot of these nits by implementing a style guide that was automatically implemented up saving. Reduces the amount of time code is in review and number of people being like, hey can you tab this over 1 more time.
@severlight
@severlight 2 жыл бұрын
Hey, a pleasure to watch you, thanks for the practice source
@SeattleDataGuy
@SeattleDataGuy 2 жыл бұрын
Glad you enjoyed it!
@kedarjoshi5878
@kedarjoshi5878 2 жыл бұрын
Most awaited video. Thanks for this👍
@SeattleDataGuy
@SeattleDataGuy 2 жыл бұрын
Thanks, hopefully it was helpful!!
@iqjayfeng
@iqjayfeng 2 жыл бұрын
AMAZING VID!
@SeattleDataGuy
@SeattleDataGuy 2 жыл бұрын
Thank you so much Jay!
@nanomartin
@nanomartin 2 жыл бұрын
I really liked this one, more than others! Didn't know about that site. I'll use it for sure. And seeing that, kind of, practical class, helps me a lot figure out something that maybe I didn't know so far. Thanks Ben!
@SeattleDataGuy
@SeattleDataGuy 2 жыл бұрын
I am so glad you found this helpful!
@TalhaFurqan-l4n
@TalhaFurqan-l4n 4 ай бұрын
if we order by score and then use lag/lead window function to get the prev/next score and then calculate the difference and go on from there. When we have ordered the complete table by score, the minimum difference is going to be with the next candidate's score or with the previous candidates's score, no other options. Can we do something like this?
@rvian4
@rvian4 8 ай бұрын
second question now requires returning users who dont have a third song with 'null' for column song and data.. for this you can replace join on second cte to a right join
@BJTangerine
@BJTangerine 2 жыл бұрын
Love this kind of content, keep it up
@SeattleDataGuy
@SeattleDataGuy 2 жыл бұрын
Glad you enjoyed it!
@vamshibokka9794
@vamshibokka9794 Жыл бұрын
For the third question we can order by the scores and then use lead() or lag() function to compare the scores
@remek5758
@remek5758 2 жыл бұрын
What i love about this Interview questions is that no one will ever have a working scenario for such dumb tasks x
@SeattleDataGuy
@SeattleDataGuy 2 жыл бұрын
I have :) But everyone works with different SQL problems.
@Alez101010
@Alez101010 2 жыл бұрын
As always, very useful video! Thank you!! Just getting my DE interview on Wednesday 🙄🙄
@SeattleDataGuy
@SeattleDataGuy 2 жыл бұрын
Good luck Alex!
@iamkv
@iamkv 2 жыл бұрын
Great video, thank you Ben!!
@SeattleDataGuy
@SeattleDataGuy 2 жыл бұрын
Glad you enjoyed it!
@S1A917
@S1A917 2 жыл бұрын
Minor detail - but your question 1 answer 1 assumes that u.id is non-null (which it should be as an id column)
@asd855280
@asd855280 2 жыл бұрын
Another great video, thank you.
@SeattleDataGuy
@SeattleDataGuy 2 жыл бұрын
Glad you liked it!
@ajaxaj6749
@ajaxaj6749 2 жыл бұрын
We can do partition by user name and song and use row _num=3 with order by asc. No need of group by CTE in 2nd question
@SeattleDataGuy
@SeattleDataGuy 2 жыл бұрын
You mean row_number() over (partition by username, song_id order by created)? Did you test it out?
@SeattleDataGuy
@SeattleDataGuy 2 жыл бұрын
Because if you do that, all it will do is start counting at 1 at the top of every new song_id.
@Chowmeingeejah
@Chowmeingeejah Жыл бұрын
For the last example why not self join onto the rank ordered by score? i.e. join rank(score) = rank(score) - 1 and then calculate the difference of the scores. Wouldn't a cross join be too resource intensive?
@brucehendry270
@brucehendry270 2 жыл бұрын
I would have answered the first question with a not exists as it's probably the easiest to read and understand what the code is supposed to be doing, good job on the other two questions, I'll have to have a look at the site and have a play myself 😋
@SeattleDataGuy
@SeattleDataGuy 2 жыл бұрын
Let me know your thoughts on the site!
@hassaanali7405
@hassaanali7405 2 жыл бұрын
Hey Ben! I hope you're extensively looking into the IBM Data Engineering Professional Certificate on Coursera, as it provides an end to end solution using everything from SQL to Airflow to basic Warehousing. Hoping for a video detailing this soon.
@SeattleDataGuy
@SeattleDataGuy 2 жыл бұрын
I filmed it this week and sent it to my editor
@BJTangerine
@BJTangerine 2 жыл бұрын
just started this course last week
@fredbradshaw4308
@fredbradshaw4308 2 жыл бұрын
@@SeattleDataGuy Thank you!!!!
@HI-bw8fe
@HI-bw8fe 2 жыл бұрын
@@BJTangerine how do you like it so far? I was thinking doing this after I finished the IBM Data Analyst.
@rememberthename911g
@rememberthename911g 2 жыл бұрын
How does the order by 3, 2, 1 select the student combination that is higher in the alphabet?
@SeattleDataGuy
@SeattleDataGuy 2 жыл бұрын
So 3,1,2 represents the columns in their respective orders. 3 is the abs(lowest score), 1 student name, 2, other student name. It's a short cut instead of writing out the entire column. Is that what you are asking?
@milanmiletic9819
@milanmiletic9819 2 жыл бұрын
Thank u for this video 👋👋👋👋👋👋👋👋👋
@SeattleDataGuy
@SeattleDataGuy 2 жыл бұрын
Glad you enjoyed it!
@lokesh1505
@lokesh1505 2 жыл бұрын
Lag or lead would work as well for the third problem
@SeattleDataGuy
@SeattleDataGuy 2 жыл бұрын
Yup! You could. This video was already getting long so I wanted to avoid rambling too long.
@frumiousgaming
@frumiousgaming 9 ай бұрын
I don’t understand why greater than failed but less than worked?
@youssefmohammed4670
@youssefmohammed4670 7 ай бұрын
Same
@coding3438
@coding3438 2 жыл бұрын
The third question about the SAT would’ve been achieved by lead lag functions as well right?
@SeattleDataGuy
@SeattleDataGuy 2 жыл бұрын
That could be a solution as well. Sometimes some companies prefer you not use window functions when you are interviewing. I have heard "can you do it without a window function" a few times
@KoldFiyure
@KoldFiyure 2 жыл бұрын
Can we do this with Python as well? I am a new data engineer that is trying to get to my next assignment. I need to hurry and upskill on Python by doing. I want to use this site youve used here to practice more SQL as well. I could never get good enough with SQL it seems.
@SeattleDataGuy
@SeattleDataGuy 2 жыл бұрын
I might have to put this on the list of videos!
@eliseocandaza4581
@eliseocandaza4581 9 ай бұрын
Thank you so much bro~
@SeattleDataGuy
@SeattleDataGuy 9 ай бұрын
You're welcome!
@davidoh6342
@davidoh6342 Жыл бұрын
Why not order by score and lead by 1 and get the diff? Cartesian join must be expensive
@SHIBIYAYA
@SHIBIYAYA 9 ай бұрын
Thanks very much !
@SeattleDataGuy
@SeattleDataGuy 9 ай бұрын
You are welcome!
@coding3438
@coding3438 2 жыл бұрын
Select distinct name from neighbourhoods where id not in ( select distinct meighborhood_id from users)
@SeattleDataGuy
@SeattleDataGuy 2 жыл бұрын
I believe this should work as well.
@lloydwang8108
@lloydwang8108 2 жыл бұрын
First solution may not work if data is unclean, eg if there actually existed a user but his id was accidentally stored as NULL
@rememberthename911g
@rememberthename911g 2 жыл бұрын
For the first question, couldn't a specific neighborhood be null in one row but filled in another row?
@SeattleDataGuy
@SeattleDataGuy 2 жыл бұрын
We are using the neighborhood has the table on the left so when we join what will happen is if there isn't a matching neighborhood_id in the user table then the user id will be null. This is a slightly less explicit solution which is why I provide the second solution. They are really doing the same thing. Finding the rows where in the user table didn't have a matching neighborhood id.
@kasinath640
@kasinath640 2 жыл бұрын
I am new to coding and stuff , pls provide best source for learning the SQL.
@SeattleDataGuy
@SeattleDataGuy 2 жыл бұрын
Maybe my video for great data courses will help kzbin.info/www/bejne/oYibkJ9rbNxqask
@datakube3053
@datakube3053 2 жыл бұрын
How much understanding of Data structure and algorithms is required to crack top product based companies
@SeattleDataGuy
@SeattleDataGuy 2 жыл бұрын
Facebook, not too much. Understand basic data structures and honestly...not a ton of algorithms. Lyft is pretty ds&a heavy from what I have heard, amazon had 0 coding questions.
@karelhalim6967
@karelhalim6967 2 жыл бұрын
Hello Ben, i've been following your data engineer roadmap, im still learning python, is it important to learn flask/django or any python web framework? Will it help me to understand data engineering better?
@SeattleDataGuy
@SeattleDataGuy 2 жыл бұрын
You don't have too. Personally, I think its not a bad skill to have. But you could get away without it.
@karelhalim6967
@karelhalim6967 2 жыл бұрын
@@SeattleDataGuy thanks for the reply Ben!
@Eastmaniac
@Eastmaniac 2 жыл бұрын
It's funny to me how a lot of the SQL questions in interviews are things you'll never have to do in your day to day job. They just find a leetcode problem and ask it. So dumb.
@carlitos4505
@carlitos4505 2 жыл бұрын
I was always told by the senior engineers that using a SELECT DISTINCT is a sign of an inexperienced developer. But they never tell me why, could you possibly help me why that is? Edit: Spelling
@SeattleDataGuy
@SeattleDataGuy 2 жыл бұрын
I can see why they would say that. There are many reasons DISTINCT isn't thought of highly. It's often used as a bandage. Instead of fixing bad data, we will just shove "distinct' over it and de duplicate the data. DISTINCT is also often an expensive operation. Also, DISTINCT can come off like you don't fully understand the data that is underlying. Again, I think this answer was literally my 3-second response. The distinct is actually not necessary. But when it comes to interviews you will have to be fast for screening rounds. Facebook will try to get you to answer 5 questions in 30 minutes and most people only get to 2 or 3 in my experience. So when putting code in production, sure, avoid distinct but realize it also has its place.
@carlitos4505
@carlitos4505 2 жыл бұрын
@@SeattleDataGuy ah, I see. Thank you so much for your speedy response! I love your videos!
@SeattleDataGuy
@SeattleDataGuy 2 жыл бұрын
If you like this content, then check out my newsletter! seattledataguy.substack.com/p/the-baseline-data-stack-building Also if you want to try out a low code tool for free, you can try out Rivery here bit.ly/3HMnsuo
@muhammadbadar6089
@muhammadbadar6089 2 жыл бұрын
every time you mention naruto in a video. I pause it go like the video and then resume.
@SeattleDataGuy
@SeattleDataGuy Жыл бұрын
I gotta mention him again!
@ronin2963
@ronin2963 2 жыл бұрын
Why would you use SQL for this? Python or JS are much better suited for this type of operation.
@SeattleDataGuy
@SeattleDataGuy 2 жыл бұрын
Oh! That’s interesting. I would love to hear more on how python and js could do a better job.
@galgottlieb2908
@galgottlieb2908 2 жыл бұрын
Thank you for your video. Can you please explain the meaning of "Unique song" in question 2? As far as I understand unique song it is a song that was not not singed by other singers before and your query doesn't approach this situation. For example, if Eminem singed a song of Dr Dre that was created in '01/01/2010' in '01/01/2022' , then the created date will be '01/01/2010' but it is not unique at this time. This will be my answer to questions two: WITH UNIQUE_SONG AS( SELECT US.ID, SP.ID , ROW_NUMBER(S[.DATE) OVER (PARTITION BY US.ID ORDER BY SP.DATE) AS 'RN' FROM USERS AS US INNER JOIN SONG AS SP ON SP.ID = US.ID WHERE US.SONG_ID IN( SELECT Song.id FROM SONG as SP group by SP.id HAVIGN DATE = min(SP.date))) SELECT UNIQUE_SONG.* FROM UNIQUE_SONG WHERE RN=3
What I Learned From 100+ Data Engineering Interviews - Interview Tips
13:28
小丑女COCO的审判。#天使 #小丑 #超人不会飞
00:53
超人不会飞
Рет қаралды 16 МЛН
99.9% IMPOSSIBLE
00:24
STORROR
Рет қаралды 31 МЛН
How To Prepare For A Data Engineering Interview
14:12
Seattle Data Guy
Рет қаралды 55 М.
SQL Interview Question Asked in Tredence Analytics
15:27
Ankit Bansal
Рет қаралды 19 М.
Top 5 SQL Interview Questions for Data Engineers
10:55
jayzern
Рет қаралды 6 М.
How To Write Better SQL In 7 Minutes
7:39
Seattle Data Guy
Рет қаралды 14 М.
小丑女COCO的审判。#天使 #小丑 #超人不会飞
00:53
超人不会飞
Рет қаралды 16 МЛН