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...


how to find 2nd highest salary in random database salary of employer.....

Answers were Sorted based on User's Feedback



how to find 2nd highest salary in random database salary of employer.......

Answer / narendra sharma

select column_name from table_name order by column_name
desc limit 1,1

Is This Answer Correct ?    12 Yes 6 No

how to find 2nd highest salary in random database salary of employer.......

Answer / arnab das

select distinct column_name from table_name order by
column_name desc limit 1,1

Is This Answer Correct ?    6 Yes 4 No

how to find 2nd highest salary in random database salary of employer.......

Answer / rajasekhar.s

select distinct a.sal from emp a where
n=(select count(distinct b.sal)
from emp b where a.sal<=b.sal)

Is This Answer Correct ?    1 Yes 1 No

how to find 2nd highest salary in random database salary of employer.......

Answer / pankajbisane

select emp_name, salary from employee where salary = (select MAX(salary) from employee
WHERE salary <> (select MAX(salary) from employee ))

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More MySQL Interview Questions

How does mysql store dates?

0 Answers  


What is SERIAL data type in MySQL?

3 Answers   Aspire,


What is the difference between mysql and oracle?

0 Answers  


How do I rename a table in mysql?

0 Answers  


Why do we use views instead of tables?

0 Answers  


What is definer in mysql trigger?

0 Answers  


What is truncate in mysql?

0 Answers  


Suppose you have to collect the first name, middle name and the last name of students from the below table. But, you observe that there few missing values either in the first name, middle name and the last name columns. How will you return the first non-null values?

0 Answers  


Can you tell how many values can set the function of mysql to consider?

0 Answers  


Can you tell which of the following where clauses is faster?

0 Answers  


What is mysql57?

0 Answers  


Is microsoft sql same as mysql?

0 Answers  


Categories