PHP Questions Home | Register | Login
Categories
Arrays
Files
Forms
Creating PDFs
PHP Errors
Functions
Images
MySQL
Numbers
Others
Strings
Website
Unanswered

PHP Forums
Forums Index
MySQL Forum
PHP Forum
Flash/Actionscript
Javascript
Web design

More PHP
PHP Functions
Top Questions
Ask a Question
PHP Interview Questions
PHP Jobs
Ecommerce
IT Questions
Business Websites

Sponsors

sponsor ad
My Salary
PHP Developer Salary
Advertise Here

How do I find second highest value from a table?


If you want to find the second highest value from a table, then simply order by the field you are interested in and take the second row, like this:

<?php

$query 
mysql_query("SELECT number FROM table ORDER BY number DESC LIMIT 2");
$second_highest mysql_result($query,1,0);
echo 
"the answer to your question is $second_highest";
?>


And that's really all that there is to it... thanks for submitting your question!



Comment on this Question and Answer >>>

ASK A QUESTION

More mysql PHP Questions

the code is running well without errors but y is it that three of the columns in the table do not insert data?

How do I return a random row from the database?

How do I update the contents of a table row?

How do I order the results of my query?

How do I find the ID of a new row added to a table?



Custom Search