php-db | 2004071
Date: 07/13/04
- Next message: John W. Holmes: "Re: [PHP-DB] Getting a result from MAX() query"
- Previous message: Dylan Barber: "RE: [PHP-DB] Getting a result from MAX() query"
- In reply to: boclair <email protected>: "[PHP-DB] Getting a result from MAX() query"
- Next in thread: John W. Holmes: "Re: [PHP-DB] Getting a result from MAX() query"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
boclair <email protected> wrote:
> Would somebody be kind enough to explain why this query produces a false result
>
> $latest=mysql_query("SELECT MAX(fee_recd) FROM members",$connectup)or die
> ("Query failed:<br>$latest<br>Error: " . mysql_error());
>
> but this one doesn't
>
> $latest=mysql_query("SELECT fee_recd FROM members ORDER BY fee_recd DESC
> LIMIT 1",$connectup)or die ("Query failed:<br>$latest<br>Error: " .
> mysql_error());
>
> Louise
>
Here's a concept: RTM
"In MySQL versions prior to Version 3.22.5, you can use MAX() instead of GREATEST. "
What does your inquiry have to do with PHP?
Doug
-- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
- Next message: John W. Holmes: "Re: [PHP-DB] Getting a result from MAX() query"
- Previous message: Dylan Barber: "RE: [PHP-DB] Getting a result from MAX() query"
- In reply to: boclair <email protected>: "[PHP-DB] Getting a result from MAX() query"
- Next in thread: John W. Holmes: "Re: [PHP-DB] Getting a result from MAX() query"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

