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

Explain me what is the importance of "method" attribute in a html form?

0 Answers  


Tell me how can we determine whether a php variable is an instantiated object of a certain class?

0 Answers  


What library is used for pdf in php?

0 Answers  


Which function can be used to exit from the script after displaying the error message?

0 Answers  


How to convert a string to lowercase in php?

0 Answers  






How to get number of elements in an array?

0 Answers  


What are magic methods?

0 Answers  


What is the difference between single-quoted and double-quoted strings in php?

0 Answers  


Who is the father of PHP and explain the changes in PHP versions?

13 Answers   Befree, iMark Group, Netizen,


What is the difference between $message and $$message?

2 Answers  


Is php closing tag necessary?

0 Answers  


What is $globals php?

0 Answers  


Categories