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 |
What is file upload?
Is it possible to destroy a cookie?
What are access specifiers?
I created a cookie with the value like '1A2A',now i want to update this value regularly (about 20 times in a minute) with the value '1A2A3A' , 3A is the new value,new value will vary on the request it may be 3A or 4A or 100A ,some times the cookie is updating with new value but not every time.Can any body suggest the solution
How to enable error reporting in php?
How a variable is declared in php?
How does integrate SSL certificate in websites and also how to generate CSR in Local machines? plese give some ideas ASAP.....
> symbol is used to redirect the output of a command. State Whether True or False?
How is it possible to cast types in php?
What is array filter in php?
What is difference between print_r and echo in php?
What is difference between mysqli and mysql?