Jump to content

Find the Highest Number in Table?


Warptweet

Recommended Posts

I use the old code below to fetch information from the database...

 

$con = mysql_connect("localhost","peter","abc123");
if (!$con)
  {
  die('Could not connect: ' . mysql_error());
  }

mysql_select_db("my_db", $con);

$result = mysql_query("SELECT * FROM person
WHERE FirstName='Peter'");

while($row = mysql_fetch_array($result))
  {
  echo $row['FirstName'] . " " . $row['LastName'];
  echo "<br />";
  }

 

Well, how can I return a row (with LIMIT 1) with upload_votes AT LEAST 3, and with the HIGHEST upload_rating of all the rows in the database table?

 

Thanks for any help.

Link to comment
https://forums.phpfreaks.com/topic/47054-find-the-highest-number-in-table/
Share on other sites

Haven't a clue since I have no idea what the database/table structure is. All we know your post is that you have a table named "person" with columns firstname and lastname. Those with telepathic abilities (like MadTechie) may be able to help :D

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.