Want to know the 10th max salary in salary table

Answers were Sorted based on User's Feedback



Want to know the 10th max salary in salary table..

Answer / amar banerjee

SELECT sal FROM salary SORT BY sal desc limit 9,1

Is This Answer Correct ?    16 Yes 5 No

Want to know the 10th max salary in salary table..

Answer / anz

SELECT sal FROM salary ORDER BY sal DESC 9,1

Is This Answer Correct ?    8 Yes 6 No

Want to know the 10th max salary in salary table..

Answer / jose_100

SELECT SAL FROM SALARY_TABLE ORDER BY SAL DESC LIMIT 9, 10;

Is This Answer Correct ?    5 Yes 3 No

Post New Answer

More PHP Interview Questions

Is it possible to use com component in php?

0 Answers  


What is htaccess?

1 Answers  


What is polymorphism?

0 Answers  


What is sticky form in php?

0 Answers  


How come the code works, but doesn’t for two-dimensional array of mine?

0 Answers  






What are super global variables in php?

0 Answers  


Explain which cryptographic extension provide generation and verification of digital signatures?

0 Answers  


What is the purpose of the php empty function?

0 Answers  


What is difference between echo and print in php?

0 Answers  


What is split function in php?

0 Answers  


what is output of echo 1< 2 and echo 1 >2

8 Answers   HCL, Navigators Software,


how to insert, update data in database

4 Answers  


Categories