所以这里我有一个产品表,其中包含ID, Name, Type&Price
现在我正在运行一个函数来为我提供特定产品类型的最低价格。
的数据类型Price是Price int(5,2)
function MinPrice($connection) {
echo "Minimum price: <br>";
$sql = "SELECT Type, min(Price)
FROM Products
GROUP BY Type;";
$result = mysqli_query($connection,$sql);
while ($row = mysqli_fetch_assoc($result)) {
//Printing the result
echo $row['Type'].' || '.$row['Price'].'<br>';
}
}
该代码有效但不正确。我得到了产品类型的名称,但对于价格,它给了我一个错误。
Undefined index: Price
谁能帮我解决这个问题?
回首忆惘然