Mysql
 sql >> Database >  >> RDS >> Mysql

SELECT MAX(... non restituisce nulla in PHP/MYSQL

Questo dovrebbe essere il codice.

$result = mysql_query("SELECT MAX(PAGE) AS max_page FROM test");
$row = mysql_fetch_array($result);
echo $row["max_page"];