01 SQL Query To Find Nth Highest Salary | SQL Interview Question and answers

preview_player
Показать описание
In this video I will show you how to write :

SQL Query To Find Nth Highest Salary
Top 3 highest salary in SQL
SQL Interview Question and answers

SQL Query To Find Nth Highest Salary, Nth highest salary in SQL, nth highest salary in Oracle, nth highest salary, nth highest salary in SQL with explanation, nth highest salary using correlated subquery

I have created a series of videos on SQL Interview questions and answers.

I will be covering various topics as listed below:
sql interview questions and answers,
Interview Q&A on SQL,
sql interview questions,
sql interview,
sql interview questions and answers for freshers,
sql queries interview questions and answers,
sql interview questions and answers for experienced,
oracle,sql server,mysql,
interview questions and answers,
interview questions,
interview questions and answers for a job

find nth highest salary in sql,
how to find nth highest salary,
nth highest salary in mysql,
nth highest salary using correlated subquery,
sql interview amazon

It's going to be beneficial for both freshers and experienced with various level (whether you are 3,5,7,10 years of exp)

If you are new to my channel, please go ahead and subscribe so you dont miss my informational videos. I will be arranging videos in my playlist. Stay tuned

Keep learning and sharing knowledge. All the best!

#sql #sqlinterview #sqlqueries #sqlhandson #sqlinterviewquestions #sqlserver #mysqlinterview #mysql #oracleinterview #database #interviewquestionsandanswers

If you are new or havent subscribed yet, please go ahead and subscribe so that you dont miss informational videos.

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

This explain very well on the question using 4 approaches: groupby, row_number, rank, and CTE. Will watch again to review. Thank you!

snowguo
Автор

Thank you sir for keenly elaborating all those functions and synopsis of queries.... 😇

pankajbhagwatkar
Автор

Can you help in the below questions.


1.
Sales(Table)
Sale(Column)
10
20
30
-5
-25

Output
Profit Loss
60 30



2.Input
A 456 467
B 478 478

Output
A 456
B 467
b 478



3. Product(Table)
id, Name, Product
10, abc, Shirt
20, bcd, Jeans
30, Jkl, Cap
40, Lmn, Shirt
10, abc, Jeans
20, bcd, Shirt



Write a query to find out customers who bought both jeans and Shirt?

vru