Asp.Net & Interview Questions
This Blog Lists Asp.Net C# Programs and Interview Questions of different technologies.
Pages
Home
Asp.net Project List
Seminar List
Interview Tips
Common Interview Questions
C# Coding Standards
Friday, 31 October 2014
Get Third Highest Salary Sql Query
Get Third Highest Salary
SELECT TOP (1) * FROM
(SELECT TOP (3) Empsalary FROM employeeMaster ORDER BY empsalary DESC) T
ORDER BY empsalary ASC
No comments:
Post a Comment
Thanks
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
SQL server tricky questions
30 - ADO.Net - multiple choice questions
1. DateSet contains one or more DataTables? A. True B. False C. Can't say D. None of the above ----------------------------------...
16 - XML multiple choice questions
1. What s the full form of XML? A. XML markup language B Extensible markup language C. Xaml markup language D. Example markup language ...
Multiview and View Example in Asp.net
1. Open Visual Studio 2. Create a New Website 3. Create Web Page 4. Place MultiView on a page and two View inside Multiview Control 5. ...
No comments:
Post a Comment
Thanks