Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


please give me the answer for this:
query which generates the second highest integer in the table?

Answers were Sorted based on User's Feedback



please give me the answer for this: query which generates the second highest integer in the table?..

Answer / river

SELECT * FROM `student` where class='Six' ORDER BY mark desc
LIMIT 1,1

Is This Answer Correct ?    3 Yes 1 No

please give me the answer for this: query which generates the second highest integer in the table?..

Answer / salil

Without using LIMIT

SELECT max( t1.col )
FROM `table` t1
WHERE t1.col < (SELECT max( t2.col ) FROM `table` t2);

Is This Answer Correct ?    2 Yes 1 No

please give me the answer for this: query which generates the second highest integer in the table?..

Answer / sunil kumar

Sorry I have a mistake in above answer. The right answer is

select marks from tablename order by marks desc limit 1,1

Is This Answer Correct ?    1 Yes 0 No

please give me the answer for this: query which generates the second highest integer in the table?..

Answer / hamza tariq

select marks from tablename order by marks desc limit 1,1

Is This Answer Correct ?    1 Yes 0 No

please give me the answer for this: query which generates the second highest integer in the table?..

Answer / sunil kumar

select marks from tablename order by age desc limit 1,1

Is This Answer Correct ?    0 Yes 0 No

please give me the answer for this: query which generates the second highest integer in the table?..

Answer / vardhan rao

With Limit: nth highest salary

Select distinct(salary) from tablename order by salary desc
limit n-1,1

Is This Answer Correct ?    0 Yes 1 No

please give me the answer for this: query which generates the second highest integer in the table?..

Answer / richa

This is a general solution to nth level of salary

Select salary from (select salary from table order by salary
desc limit 3) tbl order by salary limit 1

Is This Answer Correct ?    0 Yes 2 No

please give me the answer for this: query which generates the second highest integer in the table?..

Answer / prasun

SELECT * FROM `student` where class='Six' ORDER BY mark desc
LIMIT 0,1

Is This Answer Correct ?    1 Yes 4 No

Post New Answer

More MySQL Interview Questions

What is the use of i-am-a-dummy flag in mysql?

0 Answers  


What are the purposes of using enum and set data types?

0 Answers  


How to Recover a MySQL root password. Stop the MySQL server process. Start again with no grant tables. Login to MySQL as root. Set new password. Exit MySQL and restart MySQL server.

0 Answers  


How do I start mysql client?

0 Answers  


What is heap table?

0 Answers  


How to start mysql server?

0 Answers  


How to print message in mysql trigger?

0 Answers  


What is the default port for mysql and how it can change?

0 Answers  


Does mysql use sql?

0 Answers  


How many sql dml commands are supported by 'mysql'?

0 Answers  


what is the difrence between sql and pl/sql

21 Answers   Wipro,


Explain federated tables?

3 Answers   Tech Mahindra,


Categories