how to find the 2nd higgest salary in the column for example
take table name is employee?
And also find bottom 2nd lowest salary ?
Answers were Sorted based on User's Feedback
Answer / prasoon madnawat
SQL Server:
Select MIN(Salery) from (SELECT TOP 2 * from EMPLOYEE)
Oracle:
Select MIN(Salery) from (SELECT * from EMPLOYEE where ROWNUM <3)
MySQL
Select MIN(Salery) from (SELECT * from EMPLOYEE LIMIT 2)
| Is This Answer Correct ? | 0 Yes | 5 No |
11. diff b/w Dll and Exe
Explain cache? : .NET Architecture
what is the need of vss to developer?
Let's say I have an existing application written using Visual Studio 6 (VB 6, InterDev 6) and this application utilizes Windows 2000 COM+ transaction services. How would you approach migrating this application to .NET ?
difference between page init an page load
How to upload in video,mp4,in .net 4.5 ..?
how to minimize,maximize and restore my form programmatically?
1 Answers Interlac, Six Sigma,
Explain about .net garbage collector?
Name some changes done since version 3.0?
Explain about appdomains?
Which software is used for .net programming?
Explain about cookie less session state? : .NET Architecture