IQ15: 6 SQL Query Interview Questions

  Рет қаралды 2,218,753

The Coding Interview

The Coding Interview

8 жыл бұрын

6 common SQL Query Questions

Пікірлер: 1 200
@alpha3305
@alpha3305 7 жыл бұрын
Thanks for the quick test. I just finished a SQL course and you made me realize that I need more practice. I knew 65% but forgot details on JOIN functions.
@Salim_TravelVlog
@Salim_TravelVlog 5 жыл бұрын
For executing the query- Instead of selecting whole line of query and clicking on Execute ,u can put semicolon(;)in the end of query and just press cntr+enter it will execute directly.
@nik6920
@nik6920 4 жыл бұрын
As for the first query, you could select an employee without a sub-query. Just apply TOP(1) in the select clause and order by salary in descending order. That would be more readable
@crdave1988
@crdave1988 3 жыл бұрын
That may not work if two or more employee has the same salary as highest salary.
@unboxingsillystuffs4920
@unboxingsillystuffs4920 2 жыл бұрын
@@crdave1988 what if we apply 'Distinct' as well, this might work
@crdave1988
@crdave1988 2 жыл бұрын
@@unboxingsillystuffs4920 I am not getting your idea. Can u share more?
@davidstone1826
@davidstone1826 2 жыл бұрын
@@crdave1988 select distinct top(1) salary from employee
@EriaPinyi
@EriaPinyi 2 жыл бұрын
I think it is just another way of doing it. That is the flexibility of programming.
@mso4324
@mso4324 2 жыл бұрын
Thanks for the clear explanation. The last question (highest salary by department) will not work if the Sales department also has an employee with 80000 salary. In that case you will get 2 rows from the Sales department, and 1 row from the IT department. Better approach would be create another subquery with highest salary by department and join it back to the main table to be used as a filter.
@cassondrad2280
@cassondrad2280 7 жыл бұрын
Awesome sauce. You make it so much clearer than these other websites. THE light bulb finally came on, thank you. I so get it.....
@damienbates
@damienbates 3 жыл бұрын
The problem with using inner joins in these examples is that employees that don’t have a department assigned will be excluded from the results. Unless the intent is to only get employees that have A department assigned, use left join to include all the records. This could be resolved be setting a constraint on the department table such that employees must have a department assigned. Then an inner join works fine.
@harrymary100
@harrymary100 3 жыл бұрын
Wonderful tutorial on SQL interview questions: very helpful keep it up
@TechSolutionDesk
@TechSolutionDesk 6 жыл бұрын
Awesome! I just had my interview today and the first two questions were ask. Thank you very much..
@erickha6232
@erickha6232 5 жыл бұрын
Great Video Man. Can we have more video interview questions like this one?
@dallasitnerds2321
@dallasitnerds2321 6 жыл бұрын
730K? Can you query stacys phone number?
@johnmadsen37
@johnmadsen37 5 жыл бұрын
Dallas IT Nerds 555-she-ahoe
@PriyankaSharma-dy8dg
@PriyankaSharma-dy8dg 5 жыл бұрын
What will you do with that...
@kirakira4ever
@kirakira4ever 5 жыл бұрын
hhahahhahaha
@vatsaakhil
@vatsaakhil 5 жыл бұрын
What she sellin
@pickler_pickler
@pickler_pickler 5 жыл бұрын
hahhahhhhah
@sunilk.c5367
@sunilk.c5367 4 жыл бұрын
Excellent !! This is one of the easiest and simplest explanation I have seen .
@siriusgd4753
@siriusgd4753 5 жыл бұрын
"So, what did you learn from this demonstration?" "That a job in Sales is better than a job in I.T."
@jasonwong8315
@jasonwong8315 4 жыл бұрын
SiriusGD haha you are right
@GiacaloneSalvatore
@GiacaloneSalvatore 4 жыл бұрын
Haha fools
@atikhanovesy2152
@atikhanovesy2152 4 жыл бұрын
Lol
@LF100-03
@LF100-03 4 жыл бұрын
Less job security included.
@chad55009
@chad55009 3 жыл бұрын
probably pays better too.
@MmmBopsPops
@MmmBopsPops 5 жыл бұрын
Query #1 - SELECT * FROM employee ORDER BY salary DESC LIMIT 1.
@carloramundo9013
@carloramundo9013 5 жыл бұрын
I thought the same, but what if there's two employees with the same salary on top? I think his Query makes a bit more sense, but both should have been accepted
@HannesSchmiderer
@HannesSchmiderer 5 жыл бұрын
@@carloramundo9013 SQL-Server: ... TOP 1 WITH TIES ...
@robhunn4835
@robhunn4835 5 жыл бұрын
subqueries are slower because they actually run 2 queries, so they should only be used on small data sets...
@carloramundo9013
@carloramundo9013 5 жыл бұрын
@@HannesSchmiderer Did not know about TIES, thanks for letting me know about that, but as Robert said, you would need to sub-query it, which could lead to performance issues
@HannesSchmiderer
@HannesSchmiderer 5 жыл бұрын
@@carloramundo9013 No subquery needed here: SELECT TOP (1) WITH TIES * FROM employee ORDER BY salary DESC
@rvffrd6917
@rvffrd6917 7 жыл бұрын
Query #6 (highest salary for each department) is not complete. You have only two departments and your query returns correct result. In case many departments with a lot of employees in each of them, query may return records with employee from one department that have salary equal to max salary from another department, but not is max salary in his department. Need to add WHERE clause to subquery : select e.first_name, e.last_name, e.salary, d.department_name from employee e join department d on e.department_id = d.department_id where salary in (select max(salary) from employee where department_id = e.department_id --
@maratgubaydullin8428
@maratgubaydullin8428 7 жыл бұрын
That is correct, I was about to write a similar note. I would use Row_Number(), but your way is more elegant
@saibhargavLanka21
@saibhargavLanka21 6 жыл бұрын
Even group by not required after adding where condition
@mildtime8146
@mildtime8146 6 жыл бұрын
Its Working efficiently buti didnt understand the concept how it worked. Can you please explain.
@srikanthb903
@srikanthb903 6 жыл бұрын
group by is required to get single record for a department.
@thambithurai4115
@thambithurai4115 5 жыл бұрын
Just to add a note about DB2 - the SQL would error out, when the GROUP BY is NOT having the column name already in the SELECT (i.e., it'll be grouped by ONLY by the columns which are selected)
@lucianocorrea4823
@lucianocorrea4823 6 жыл бұрын
Great examples and very intuitive and simple explanation. Thank you!
@ishwargoudar1851
@ishwargoudar1851 6 жыл бұрын
Good one. Helped me to understand these queries in quick and simple way.
@srinikethvydya806
@srinikethvydya806 4 жыл бұрын
Thanks for the video. As for PostgreSql is concerned, to get the 2nd highest salary the query would be select * from employee order by salary desc limit 1 offset 1; The query can be generalized to get 'r'th highest salary (provided r < no. of records in employee table) select * from employee order by salary desc limit 1 offset r;
@bryanparis7779
@bryanparis7779 Жыл бұрын
If i may say sth, the code you provided returns the 'r+1'th highest salary...right? Not the 'r'th
@SonnyWest87
@SonnyWest87 4 жыл бұрын
Finally code interview video where I can understand them. He’s actually showing relevant interview questions too. Legit had 5 companies give me interview questions like this
@brendonoel1985
@brendonoel1985 4 жыл бұрын
Did the companies ask for specific SQL certification? Also which one would you recommend?
@sureshpatra6384
@sureshpatra6384 4 жыл бұрын
it is very easy 😊
@DrunkenEngineer
@DrunkenEngineer 4 жыл бұрын
Thanks for uploading it. Really helpful for people who want to brush up there SQL skills before an interview.
@joelatwar
@joelatwar 6 жыл бұрын
This was a great refresher for an interview I have tomorrow
@DistantGlowingStar
@DistantGlowingStar 4 жыл бұрын
These are entry level questions, most complex ones are those that require to retrieve hierarchical data , indexes, rank etc..
@MM-ow2md
@MM-ow2md 2 жыл бұрын
@Guru H Please do a video and explain some complex SQL questions with answers. Thanks.
@sujitkumarnayak101
@sujitkumarnayak101 7 жыл бұрын
thank you. nice tutorial and also better to find the Nth highest salary by using level select max(salary) from employee where level = Nth connect by prior salary > salary; if u want 1st highest salary thn replace Nth with 1 if u want 2nd highest salary thn replace Nth with 2 ....................
@YogendraTamang
@YogendraTamang 7 жыл бұрын
Select * from (select DENSE_RANK() OVER (ORDER BY Salary desc) AS SN,* from Employee ) as NewTable where SN =N
@sarikabiwalkar4037
@sarikabiwalkar4037 7 жыл бұрын
Your answer is correct since it will give the result for nth salary.
@nikhilb3880
@nikhilb3880 5 жыл бұрын
Or use limit
@sospeterson
@sospeterson 7 жыл бұрын
Nice job made it easier to Understand
@StudentChambers
@StudentChambers 6 жыл бұрын
This is a great video, keep up the good work.
@maheshjamdade1
@maheshjamdade1 5 жыл бұрын
Thanks for this video the exact thing I was looking for,this is very helpful :) I just subbed you
@shreyansjain1853
@shreyansjain1853 4 жыл бұрын
Question 4 Ans Select First_Name, Last_Name, Salary, Department_Name from employee Inner JOIN Department on employee.Department_Id = Department.Department_Id Order by Salary desc limit 1;
@anzimk1620
@anzimk1620 6 жыл бұрын
Great vdo... Simple to understand.. Thnzlot... I just subscribed .
@suciugianni900
@suciugianni900 6 жыл бұрын
Excelent video. Great Job. Thanks
@purnapp4012
@purnapp4012 6 жыл бұрын
These sql queries are very helpful for interview.
@TechandArt
@TechandArt 3 жыл бұрын
Awesome
@mjrobins
@mjrobins 5 жыл бұрын
Yea the last example only works on your small set. That will pull any employee, from any department, with a salary that matches the highest salary in any department. If Joe is 65th in Sales but makes the same as the CEO, Joe shows up in the results. Could debate the rankings but I think that’s close enough to pass those questions. Nice work!
@glennbabic5954
@glennbabic5954 2 жыл бұрын
Yes if two employees in different departments earned the same and one was the highest earner in their department but the other was not then they'd both show as well as the true highest earners. I don't think this is good work at all, it shows a lack of understanding which results in errors the coder will not expect or be able to fix.
@PCSExponent
@PCSExponent 2 жыл бұрын
@@glennbabic5954 I agree. The way to solve this question is using a loop, which is not often done in SQL.
@glennbabic5954
@glennbabic5954 2 жыл бұрын
@@PCSExponent No the way to solve it is to inner join to a subquery with a window rank function joining by dep, emp and rank by salary desc and then a where clause rank = 1.
@PCSExponent
@PCSExponent 2 жыл бұрын
@@glennbabic5954 Yep, that's simpler than a loop. Thank you for the reply.
@glennbabic5954
@glennbabic5954 2 жыл бұрын
@@PCSExponent Something like this: select e.first_name, e.last_name, e.salary, d.department_name from (select e.*, d.*, rank() over (partition by e.department_id order by e.salary desc) salary_rank from employee e inner join department d on (e.department_id = e.department_Id)) where salary_rank = 1;
@RoseOginga2
@RoseOginga2 4 жыл бұрын
Great ! Love your explanation very much on point - Thanks
@MiddleClassTalk
@MiddleClassTalk 7 жыл бұрын
great video!! nice work..keep it up
@steenteudt
@steenteudt 5 жыл бұрын
#1: select top 1 * from employee order by salary desc
@FIXProtocol
@FIXProtocol 7 жыл бұрын
Great stuff! I just subscribed! You did a really good job! Let's help these folks learn and grow! This is REAL KZfaq content!
@neilpirelli9240
@neilpirelli9240 6 жыл бұрын
awesome, useful video. thanks
@rccowboys
@rccowboys 6 жыл бұрын
I subbed! Thanks bro! really loved the vid. keep up the good work!
@waqaracheema
@waqaracheema 3 жыл бұрын
Good video. There is a problem with last query which uses a group by on department. If there are duplicate salary values you may end up selecting the wrong employee and department record
@sunaxes
@sunaxes Жыл бұрын
Came here to say that. Thank you!
@amitpatelpatel144
@amitpatelpatel144 7 жыл бұрын
same question asked me the interviewer in 2015. My answer: I sorted the salary in ascending order and search max salary and again search max salary excluding the max salary. Interviewer smiled at me, give me a blank paper and said: please write down the code . My nervousness got high as Everest top.
@MrGoDuck
@MrGoDuck 6 жыл бұрын
Sorting probably isn't the fastest way to go about this, that query will waste computing power trying to organize all the salaries in their respective place, finding max value is faster and consumes less resources, if you only care for the top 2 places you just query using MAX, and for second highest you query for max WHERE NOT IN max. this will return the highest value excluding the truly highest value, so 2nd highest basically. and you don't need to order the other hundreds or thousands of employees by salary.
@ravieco
@ravieco 6 жыл бұрын
you can also write in SAS like this PROC SORT DATA=EMPLOYEE OUT=EMPLOYEE1 ; BY DESCENDING SALARY; RUN; you can get highest , second highest and so on.....
@noorhuda-xd2pu
@noorhuda-xd2pu 5 жыл бұрын
DURING INTERVIEW HOW MUCH CGPA MATTERS TO GET A GOOD JOB
@mihiretumisganu7170
@mihiretumisganu7170 6 жыл бұрын
Fantastic SQL video by clear explanation ,Thank you
@ivanhaidarli7163
@ivanhaidarli7163 4 жыл бұрын
easy to understand, informative. Thank you. watching in 2020
@lifecoachjess967
@lifecoachjess967 6 жыл бұрын
Thank you so much for sharing this content with us. I found the walk-through of the Queries , very helpful! If I can ask for a bit of advise to those who are proficient with SQL server: For someone like me, I have a Bachelors degree but not in computer science. I also have no prior IT experience. What would be your advise for me in regards to trying to get more training and get into the DBA field? I took a SQL server developer class last summer, and i absolutely loved it. Never thought i would be interested in the computer science field, but i am. I have been self-study for the past couple months. Any suggestions would be helpful. If i should take another class somewhere(preferably without going back to college), or if i should take some exams to get certification? Thanks :)
@Ittherapist6656
@Ittherapist6656 Жыл бұрын
I would like recommend to go for Python :)
@nikhilvaidya587
@nikhilvaidya587 5 жыл бұрын
Your 6th query is incorrect. For example if sales department has an employee with 80000 salary the query will return one more record.
@fabioneves9224
@fabioneves9224 3 жыл бұрын
indeed, is there any advantage to using these nested queries? I would use the MAX() formula on the first select and join department table followed by a last groupby department number.
@bobbygia1198
@bobbygia1198 3 жыл бұрын
@@fabioneves9224 I would use window function Max salary partition by department and only select records where salary = the window Max
@charbelbejjani5541
@charbelbejjani5541 3 жыл бұрын
@@bobbygia1198 Yeah easier
@TheCodingInterview
@TheCodingInterview 5 жыл бұрын
Even though in the video I addressed how to find the 2nd highest salary. I did see some discussion in the comments about finding the nth highest salary. In order to find the nth highest salary see below: SELECT TOP 1 salary FROM ( SELECT DISTINCT TOP N salary FROM Employee ORDER BY salary DESC ) AS nthSalary ORDER BY salary Explanation of the above query: 1.) First I select the TOP 1 salary which is supposed to specify the number of records to be returned. 2.)Next in my From, inside I have a query containing the DISTINCT keyword which removes duplicates. That query will also take note of the salary you want returned. 3.) Finally the outer query will select the top most salary based on the value of N that you pass in Hope this makes sense. I plan on making more videos like this in the future related to SQL, where I'll make sure to take time and take a more comprehensive approach. Thanks guys for all your feedback.
@avinashgogineni4u
@avinashgogineni4u 3 жыл бұрын
Well explained and easy to understand beginners 👏👏
@Football-vb9fg
@Football-vb9fg 7 жыл бұрын
Thank you
@cwillison94
@cwillison94 5 жыл бұрын
Never use * in production! Make sure you tell them that in the interview. Also some of your queries will be very inefficient on large datasets.
@MsSabBieber
@MsSabBieber 4 жыл бұрын
please explain why not use * in production? also, what is production? sorry, very beginner here!
@cwillison94
@cwillison94 4 жыл бұрын
@@MsSabBieber * is subject to schema changes, which includes things like column order, name changes etc... Easiest example Insert into (column_a, column_b) Select * from some_table If some_table has 2 columns (of matching data types) you are ok. However, let's say you add a new column to some_table. You have now broken that SQL code, this can be a big problem in production environments which may have 100's or even 1000's of stored procedures.
@MsSabBieber
@MsSabBieber 4 жыл бұрын
Cole Willison that makes sense, thank you!
@kuelexx5451
@kuelexx5451 6 жыл бұрын
You are great at giving instructions. Very good explanation. Thank you
@rajeshkumarchhatar7057
@rajeshkumarchhatar7057 7 жыл бұрын
Gr8 Explanantion...!!!
@spicytuna08
@spicytuna08 6 жыл бұрын
2nd highest salary: select Max(Salary) from Employee where salary < select Max(Salary) from Employee. THis makes more intuitive to me.
@aboalhassan448
@aboalhassan448 4 жыл бұрын
and add limit 1 to the end
@gginnj
@gginnj 4 жыл бұрын
aboalhassan you shouldn't need the limit 1, as max() will only return 1 value
@aboalhassan448
@aboalhassan448 4 жыл бұрын
youre right thank u
@TechandArt
@TechandArt 3 жыл бұрын
It's very important
@kstevens0915
@kstevens0915 3 жыл бұрын
This way is the simplest...select (Max(Salary)-1) from Employee
@bobDotJS
@bobDotJS 5 жыл бұрын
Would it be wrong on the first question to answer as: Select * from employee Order by Salary desc Limit 1 I'm just curious if that would be frowned upon during and interview or if it's just another valid solution
@manit77
@manit77 4 жыл бұрын
Not exactly wrong but, You might want to return all employees that have the highest salary.
@FaisalKhan-hc7tn
@FaisalKhan-hc7tn 4 жыл бұрын
Awesome... keep it up.
@SeekerShady
@SeekerShady 5 жыл бұрын
Every helpful, thanks for sharing!!!
@this.channel
@this.channel 5 жыл бұрын
Nice refresher. I tend to forget the specifics if I haven't been working on databases for a while.
@atikhanovesy2152
@atikhanovesy2152 4 жыл бұрын
True
@kevinclarke3485
@kevinclarke3485 6 жыл бұрын
Wow, you are a great teacher! Your pace is easy to follow and you take time to explain every single step. Perfect for both novice and intermediate query writers. I've been a DBA for a little while and I actually didn't know how to extract the 2nd highest salary, so thanks for fine-tuning my logical thinking! Looking forward to more advanced stuff from you.
@umakasibatla6389
@umakasibatla6389 7 жыл бұрын
Thanks for sharing the video, Nicely explained.
@robinmitrani25
@robinmitrani25 7 жыл бұрын
Very very good video!!! wah 👌
@beingyourself9824
@beingyourself9824 5 жыл бұрын
select salary from employee order by salary desc limit 1,1 for 2nd highest I think select salary from employee order by salary desc limit 2,1 for 3rd highest
@stanson5850
@stanson5850 4 жыл бұрын
Not ideal... what if salary #1 is 60k, #2 is 60k also, then #3 is 50k. If you offset 1,1 for the second highest value, you are only returning the next line, which is the same value of 60k. You need to use dense_rank
@Boomeringo
@Boomeringo 4 жыл бұрын
@@stanson5850 SELECT * FROM employees GROUP BY salary ORDER BY salary DESC LIMIT 1,1
@reylencatungal4593
@reylencatungal4593 3 жыл бұрын
select * from employee order by salary desc offset 1 rows fetch next 1 rows only. Limit is not applicable in this tutorial. He is using SQL Server.
@vitaliysamofal2866
@vitaliysamofal2866 5 жыл бұрын
It makes sense to add limit 1 to the first query, for the case where several employees may have the same highest salary. The third task may have such solution (I'm not sure about efficiency, but should be fine if we have sorted index): select * from ( select * from employee order by salary desc limit 2 ) r order by salary asc limit 1
@MDevion
@MDevion 4 жыл бұрын
Table scan for the love of god. Dont do this.
@amandalynn4900
@amandalynn4900 4 жыл бұрын
Very well done! Thank you so much for making the video. Have a wonderful day!
@jayshankar4207
@jayshankar4207 2 жыл бұрын
Great video and good explanation.
@kwabenaodameakomeah3374
@kwabenaodameakomeah3374 5 жыл бұрын
Well for the second question we could try this.. Select * from employee where salary= (Select min(salary) from (select * from employee order by salary desc limit 2) as Top); This code actually returns Nth highest . Just change the desc limit to the nth digit. Everybody seemed to care about finding the nth heighest. I was thinking.. well what if you were asked to find the 5th highest??
@AKHILESHKUMAR-nk2rk
@AKHILESHKUMAR-nk2rk 4 жыл бұрын
this will fail in case of repeating values
@unboxingsillystuffs4920
@unboxingsillystuffs4920 2 жыл бұрын
​@@AKHILESHKUMAR-nk2rk This might work Select * from employee where salary= (Select min(salary) from (select distinct(salary) as salary from employee order by salary desc limit 2) as Top);
@ramasraju9993
@ramasraju9993 7 жыл бұрын
Thank you. its really useful and good explanation.
@shailuvaiket4829
@shailuvaiket4829 6 жыл бұрын
Great Stuff, Clear explanation....
@surendravishwakarma5244
@surendravishwakarma5244 5 жыл бұрын
Good explain and i am understand everything questions.
@superkutta
@superkutta 6 жыл бұрын
for 2nd higest salary Select * from ( Select salary, dense_rank () over ( order by salary desc) ranking from employee ) Where ranking =2
@madhaviravoori6466
@madhaviravoori6466 6 жыл бұрын
Good one, never used dense_rank before in my queries. Thanks. Only thing is, alias is required for inner query. Select * from ( Select employee_id,first_name,last_name,salary, dense_rank () over ( order by salary desc) ranking from employee) as e1 Where e1.ranking =2
@johndrury
@johndrury 6 жыл бұрын
You might want to change it to SELECT DISTINCT in the derived table or change the top level select to SELECT TOP(1) since if there could be multiple people tied for the second highest salary, and they would have the same dense rank.
@Osta165
@Osta165 5 жыл бұрын
this is correct!
@Osta165
@Osta165 5 жыл бұрын
wen we use distinct i think this is when we need to return unique values.
@13abesssssssssssssss
@13abesssssssssssssss 5 жыл бұрын
what if we are looking for 3rd or 4th highest salary?
@AAA-bo1uo
@AAA-bo1uo 5 жыл бұрын
Some questions: For the first, is that more efficient than: SELECT * FROM employee ORDER BY salary DESC LIMIT 1 ?
@jk2l
@jk2l 5 жыл бұрын
it is trick question. the question want you to find the employee with highest salary, but if there are two or more with same highest salary LIMIT 1 will fail
@ciruzzi7
@ciruzzi7 5 жыл бұрын
Trying to get familiar with SQL and I enjoyed the video and most of the comments below. This is one of the better video's for someone like me...Beginner....I could truly follow and understand
@rmaleshri
@rmaleshri 6 жыл бұрын
Indeed great video and excellent explanation
@nenenartey4266
@nenenartey4266 7 жыл бұрын
Hi... Great video! However, I think that for an interview question the second highest salary could be better expressed as below. Your solution satisfies only the 2nd highest. It fails the test for any "N"th highest salary. SOLUTION: select salary from employees e where (select count(distinct salary) from employees where salary > e.salary) = 1 /*(n-1)*/ -------------------------------or------------------------------ select sal from (select sal, rownum position from (select distinct (salary) sal from employees e order by 1 desc)) where position = 2 /*n*/
@ChrisSmithFW
@ChrisSmithFW 7 жыл бұрын
How do you get a better answer? He got the answer he sought. Problem solved.
@johndrury
@johndrury 6 жыл бұрын
It's a sample interview question, if there is a more robust solution or a solution that shows a more advanced understanding if T-SQL that might impress interviewer and improve your chances of being hired, therefore it's "better".
@kevinsiedenburg4955
@kevinsiedenburg4955 5 жыл бұрын
You could also use a rank.
@cgalon6781
@cgalon6781 5 жыл бұрын
@@johndrury agreed, also crafting a solution valid for any Nth salary shows the interviewer you really understand how to query
@munnaharun2431
@munnaharun2431 5 жыл бұрын
Suppose if salary having null value, then it returns in nth highest salary when u select 1st highest salary
@ALIRAZA-cp4fs
@ALIRAZA-cp4fs 5 жыл бұрын
another solution for 2nd highest salary: "SELECT salary FROM employee ORDER BY salary DESEC LIMIT 1 OFFSET 1" it will first order the salary attribute(column) then skip the 1st which is highest one and display the 2nd highest
@artipathak6656
@artipathak6656 5 жыл бұрын
no it is not displaying second highest salary
@stanson5850
@stanson5850 4 жыл бұрын
Not ideal... what if salary #1 is 60k, #2 is 60k also, then #3 is 50k. If you offset 1, you are only returning the next line, which is the same value of 60k. You need to use dense_rank
@AKHILESHKUMAR-nk2rk
@AKHILESHKUMAR-nk2rk 4 жыл бұрын
bro u will fail in repeating values
@cassondrad2280
@cassondrad2280 4 жыл бұрын
Excellent. Verbally clear and so concise. I enjoyed learning and have full understanding as well. Well Done...
@frankzelazko
@frankzelazko Жыл бұрын
very useful and educational video. cheers
@johnspencer772
@johnspencer772 5 жыл бұрын
Looking at the comments, I see many-many 'best ways' to execute the queries. And from my experience, there are many--many ways to execute the questions as queries - some ways 'better' than others (for performance [which is the only gauge??]).... Obviously, the tutorial was meant to be just that--a tutorial to answer basic SQL questions using a small set of data to query. From there it would be up the 'subjective' judgement' of the interviewer to determine if the 'best way' for each question has been developed during the interview......
@MrAnmoltiwari
@MrAnmoltiwari 7 жыл бұрын
really good explanation!
@robertablack8363
@robertablack8363 3 жыл бұрын
I love it. I just signed up to get in a SQL class. The test I took looked like algebra. This makes more sense. I think I can do this . I just need to learn to think In query speak. Pray for me son 🙏.
@gplus46
@gplus46 6 жыл бұрын
Great information. Very straight forward.
@chazsmith20
@chazsmith20 5 жыл бұрын
If you really want to impress on an interview when they ask about nth highest salary (assuming it's not just the 2nd highest salary) you would use SQL ranking functions. For instance to get 9th highest salary : Select * from (Select row_number() over(order by Salary desc) as rownumb,* from [Salarytable]) as x where rownumb = 9 to get between 5th and 11th salary same thing just change the end : Select * from (Select row_number() over(order by Salary desc) as rownumb,* from [Salarytable]) as x where rownumb between 5 and 11
@PCSExponent
@PCSExponent 2 жыл бұрын
Or much more simply: ORDER BY salary DESC LIMIT n-1, x+1; when you want the nth salary through to n+xth salary.
@darioa2827
@darioa2827 3 жыл бұрын
OMG, got an interview for monday morning, applying for data analysis position, SQL is a preferred and not a must, but still trying to learn as much as possible on this weekend. Wish me luck
@azfarbakht2167
@azfarbakht2167 3 жыл бұрын
So how'd it go?
@darioa2827
@darioa2827 3 жыл бұрын
@@azfarbakht2167 I failed, they never reached me out for the second interview. However I think I got rejected because non demostrable experience, no projects neither certificates, I'll pay for an online SQL, MySQL, Oracle certificate and I'll have to work on something myself to prove my skills whenever a new chance shows off
@vadiyarhemadri1903
@vadiyarhemadri1903 Жыл бұрын
Super learnt lot of knowledge from you thank you so much
@micky992
@micky992 6 жыл бұрын
Nice one mate! Easy to understand. Thanks.
@learn365days
@learn365days 5 жыл бұрын
Sir can you please answer the questions without using sub query. That would be great.
@erwinekkel9676
@erwinekkel9676 5 жыл бұрын
Sub query should be avoided at all costs agreed?!
@udaynayak4788
@udaynayak4788 7 жыл бұрын
for second question - Max second highest salary can be achieved by using less than as well. select max(salary) from employee where salary < (select max(salary) from employee)
@thequeenreads2
@thequeenreads2 6 жыл бұрын
uday nayak I was wondering about that, because when I write queries in access I use the less than or greater than in my script also.
@shubhampatil1557
@shubhampatil1557 5 жыл бұрын
Yes you can use with less than operator
@charlesbyrneShowComments4all
@charlesbyrneShowComments4all 5 жыл бұрын
You can also use row_number and a cte, but the person doesn't account for duplicate salaries at the top. You would need to rank the records with another field such as years employed, etc.
@bogdanionut7768
@bogdanionut7768 5 жыл бұрын
@@charlesbyrneShowComments4all I would stay away from functions that are available only in sql server or some other RDMS's and use only pure sql. For the second highest salary I would go with this: select max(salary) from employees where salary(select max(salary) from employees) Simple, clean and it works everywhere.
@beingyourself9824
@beingyourself9824 5 жыл бұрын
select salary from employee order by salary desc limit 1,1 for 2nd highest select salary from employee order by salary desc limit 2,1 for 3rd highest
@bilalanwar9857
@bilalanwar9857 6 жыл бұрын
awesome nice.........gud video
@WillowCreekGamesLLC
@WillowCreekGamesLLC 4 жыл бұрын
Excellent video :)
@prithalove
@prithalove 6 жыл бұрын
for the question find the second highest salary we can also use the query: select top 1 * from ( select top 2 SALARY from Employees_test order by Salary desc )S order by Salary
@MDevion
@MDevion 4 жыл бұрын
2 table scans?......argh. Just dont do this ever.
@loam
@loam 5 жыл бұрын
for 2nd I would go with: SELECT salary FROM Employee ORDER BY salary DESC LIMIT 1 OFFSET 1
@nataliatimakova9446
@nataliatimakova9446 5 жыл бұрын
DISTINCT(salary) застрахует от дубликатов. Ведь может быть две одинаковые MAX(salary)
@manit77
@manit77 4 жыл бұрын
What if two people have the same salaries?
@gloriabukachi1
@gloriabukachi1 11 ай бұрын
Thank you for the videos. I am adding to my knowledge
@VinaySingh-kn1od
@VinaySingh-kn1od 4 жыл бұрын
Nice video really ok informative
@ras_tesfa5148
@ras_tesfa5148 5 жыл бұрын
For the record, "NOT IN" doesn't mean "NOT EQUAL", technically. 😉
@RutgerOlthuis
@RutgerOlthuis 4 жыл бұрын
Not true. "Not in" can handle multiple values, where not equals only one. In this case a max returns only one value, so not equal would be fine too. If the sub query might return more values, you need IN/NOT IN
@deepakpandey9406
@deepakpandey9406 4 жыл бұрын
Not true. 'Not In' behind the scene doing 'Not Equal' comparison with each value. 'Not In' work with multiple values where as 'Not Equal ' work with single values to compare.
@AdnanSabah
@AdnanSabah 5 жыл бұрын
The last Select is not right. When you have a onther coworker in Sales with 80000 Salary you will become a resultset with three rows. You have to make a subselect with max(salary) and department and join them to the employee. Sorry for my english!
@auspicio9720
@auspicio9720 5 жыл бұрын
This is my first SQL video and I learnt it easily....You taught me very quicky 😬 Thanks
@ysnvas
@ysnvas 6 жыл бұрын
Great stuff👏🏻👏🏻👍🏻
@mandiramitra7203
@mandiramitra7203 5 жыл бұрын
Hey, what will be the query for 3rd or 4th highest salary then?
@devinkemp662
@devinkemp662 5 жыл бұрын
I was wondering the same thing?
@owoeyegbenga8657
@owoeyegbenga8657 3 жыл бұрын
For 2nd Highest Salary, We can also do select salary FROM employee ORDER BY salary DESC LIMIT 1,1
@axlderks4022
@axlderks4022 3 жыл бұрын
Select top 1 also works
@g.s.1757
@g.s.1757 5 жыл бұрын
Great value for a fresh TSQL developer. If want to move a step forward and get a serious job try getting MAX values using LEFT JOINS. Of course try to avoid sub-queries wherever possible unless you use Query Hints. Good luck!
@TheSchmed
@TheSchmed 5 жыл бұрын
To make it a bit more challenging “choose best way” to do each. Sargable vs non sargable, different beast when table has 700 vs 700MM rows, with sub queries, CTEs, Fn calls, Outer Apply, #temp table joins, sql link joins, and all the other fun stuff.
@mohammadarifulla797
@mohammadarifulla797 7 жыл бұрын
For getting 2nd highest sal: Can we write like this 1) Select Max(Salary) from Employee where Salary < (select Max(Salary) from Employee ) 2) Select salary from Employee where salary = ( Select distinct Salary from Employee where Rownum = 1 order by desc) Please correct me if I'm wrong, I'm just learning
@TheCodingInterview
@TheCodingInterview 7 жыл бұрын
The 1st sql statement you mentioned will definitely get you the 2nd highest salary. I'm not too sure about using rownum yet.
@nirmalwewitavidana2592
@nirmalwewitavidana2592 6 жыл бұрын
how do we find all the details(row) of the employee who gets the 2nd highest salary
@madhaviravoori6466
@madhaviravoori6466 6 жыл бұрын
Hi, In your second query, using ORDER BY Clause in the inner select doesn't work , it is invalid
@srikanthb903
@srikanthb903 6 жыл бұрын
the first statement gets you all the salaries less than max salary. so wrong.
@mehranofff
@mehranofff 5 жыл бұрын
@@srikanthb903 No. Actually the first query returns the correct result. It is SELECT MAX(Salary) which returns only one value
@joseassumpcao624
@joseassumpcao624 5 жыл бұрын
Question 2: For Nth highest salary go SELECT salary FROM (SELECT salary FROM employee ORDER BY salary DESC LIMIT N) ORDER BY salary ASC LIMIT 1
@aminshoman1
@aminshoman1 5 жыл бұрын
there is limit/offest in the fucking SQL-SERVER
@AKHILESHKUMAR-nk2rk
@AKHILESHKUMAR-nk2rk 4 жыл бұрын
wht about when we have repeating values
@shirleynikkitha4176
@shirleynikkitha4176 7 жыл бұрын
So very helpful thanks a ton!!!! :) expecting some more tutorials as this
@shakib651
@shakib651 6 жыл бұрын
Precise & adequate. Thanks alot :)
Learn SQL In 60 Minutes
56:24
Web Dev Simplified
Рет қаралды 2,1 МЛН
Comfortable 🤣 #comedy #funny
00:34
Micky Makeover
Рет қаралды 14 МЛН
Они так быстро убрались!
01:00
Аришнев
Рет қаралды 2,4 МЛН
哈莉奎因以为小丑不爱她了#joker #cosplay #Harriet Quinn
00:22
佐助与鸣人
Рет қаралды 10 МЛН
Lets build an AI powered SAAS with Nextjs and Cloudinary
9:31
Hitesh Choudhary
Рет қаралды 6 М.
The 25 SQL Questions You MUST Know for Data Analyst Interviews
32:47
KSR Datavizon
Рет қаралды 209 М.
Solving SQL Interview Queries | Tricky SQL Interview Queries
37:22