Want to know the 10th max salary in salary table
Answers were Sorted based on User's Feedback
Answer / amar banerjee
SELECT sal FROM salary SORT BY sal desc limit 9,1
| Is This Answer Correct ? | 16 Yes | 5 No |
Answer / jose_100
SELECT SAL FROM SALARY_TABLE ORDER BY SAL DESC LIMIT 9, 10;
| Is This Answer Correct ? | 5 Yes | 3 No |
how to work lamp server
Swap two variables value without using third variable in php ?
What is the name of scripting engine in php?
How can we encrypt the username and password using PHP?
13 Answers Avaria, HCL, TCS, Xpert,
Explain me what is x+ mode in fopen() used for?
Explain the three different kinds of Arrays?
Which cryptographic extension provide generation and verification of digital signatures?
what is "mysql_pconnect", i know mysql_connect but what it is pconnect is their?
Does https prevent csrf?
What is artisan in php?
What is memcache?
What is the string concatenation operator in php?