所以这里我有一个产品表,其中包含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谁能帮我解决这个问题?
1 回答
回首忆惘然
TA贡献1847条经验 获得超11个赞
尝试这个:
$sql = "SELECT Type, min(Price) as Price FROM Products GROUP BY Type;";
- 1 回答
- 0 关注
- 62 浏览
添加回答
举报
0/150
提交
取消