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

How can we know that a session is started or not?

3 Answers   Rushmore Consultancy,


What is the current stable version of php? What advance thing in php7?

0 Answers  


How many ways we can give the output to a browser?

6 Answers  


How to display your correct URL of the current web page?

0 Answers  


Explain about Type Juggling in PHP?

2 Answers  






How to call javascript function in php without any event?

0 Answers  


Which php framework is best?

0 Answers  


In php, how to redirect from one page to another page?

0 Answers  


Name and explain five of the PHP error constants?

0 Answers  


How can we display information of a variable and readable by human with php?

0 Answers  


How many escape sequences are recognized in single-quoted strings?

0 Answers  


What changes to done in PHP.ini file for file uploading?

2 Answers  


Categories