我需要获得某一列的最大值。这是我在 turorial 上得到的代码。
$query = "SELECT type, MAX(ID) FROM sessions GROUP BY Status";
$result = mysql_query($con, $query) or die(mysql_error());
// Print out result
while($row = mysql_fetch_array($result)){
echo "The biggest session ID is " .$row['MAX(ID)'];
echo "<br />";
}
我需要得到表中最大的 ID 号。状态只是我认为与在 ID 列中查找最大数字无关的另一列。我究竟做错了什么?