My blogs are all about basic Software Testing concepts.I am Trying to contribute some knowledge to freshers\Graduates who aspire to have a career in Software Testing
Monday, October 31, 2011
SQL QUERY TO FIND THE 5TH MAX MARK FROM EXAM TABLE
SELECTTop 1 MARK AS MARK FROM exam
WHERE MARK IN
(SELECTDISTINCTTOP(5) MARK FROM exam ORDERBY MARK DESC)
No comments:
Post a Comment