What will be the sql query to list the employee names those
are getting 3rd highest salary ?



What will be the sql query to list the employee names those are getting 3rd highest salary ?..

Answer / Samar Jeet Yadav

You can use a SQL query with subqueries and ranking functions like this:nWITH RankedEmployees AS (SELECT *, ROW_NUMBER() OVER(ORDER BY Salary DESC) as Rank FROM YourTable)nSELECT Name FROM RankedEmployees WHERE Rank = 3

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Engineering AllOther Interview Questions

Difference between software process model and software process.?

1 Answers  


What is a decade?

2 Answers  


what is the difference betweeen far pointer and near pointer

1 Answers  


why there is a collision in switch

1 Answers  


What will be the sql query to list the employee names those are getting 3rd highest salary ?

1 Answers  


what is the differences between software engineering and other engineering disciplines.

1 Answers  


defference between menu and context menu in vb.net?

1 Answers  


the conditional jump instruction in 8086 have a displacement of more than 1 byte.explain how would you tackle a situation in which it is required to branch,on some condition,to a location which is more than 120 bytes away.

1 Answers  


Write a nonrecursive routine to reverse a singly linked list in O(N) time.

4 Answers   Aptech, College School Exams Tests, IIIT, Infosys, KL University, SRM,


wats the difference between RS latch using NAND n NOR gate? which is to be preffered?

1 Answers   ABC,


how to create session in visual web jsf page as we create in jsp and how to maintain that jsf session in another jsp page? <JSF=java server faces> <JSP=java server pages>

1 Answers  


give me some knowledge about automation on which asked on interview

1 Answers  


Categories
  • Civil Engineering Interview Questions Civil Engineering (5086)
  • Mechanical Engineering Interview Questions Mechanical Engineering (4453)
  • Electrical Engineering Interview Questions Electrical Engineering (16638)
  • Electronics Communications Interview Questions Electronics Communications (3918)
  • Chemical Engineering Interview Questions Chemical Engineering (1095)
  • Aeronautical Engineering Interview Questions Aeronautical Engineering (239)
  • Bio Engineering Interview Questions Bio Engineering (96)
  • Metallurgy Interview Questions Metallurgy (361)
  • Industrial Engineering Interview Questions Industrial Engineering (259)
  • Instrumentation Interview Questions Instrumentation (3014)
  • Automobile Engineering Interview Questions Automobile Engineering (332)
  • Mechatronics Engineering Interview Questions Mechatronics Engineering (97)
  • Marine Engineering Interview Questions Marine Engineering (124)
  • Power Plant Engineering Interview Questions Power Plant Engineering (172)
  • Textile Engineering Interview Questions Textile Engineering (575)
  • Production Engineering Interview Questions Production Engineering (25)
  • Satellite Systems Engineering Interview Questions Satellite Systems Engineering (106)
  • Engineering AllOther Interview Questions Engineering AllOther (1379)