gpt4 book ai didi

php - SQL根据ID更新多行

转载 作者:行者123 更新时间:2023-11-29 01:20:52 26 4
gpt4 key购买 nike

如何根据输入的 ID 将行更新到输入中?例如。 20,23,24更新'价格'我的代码:

$result = mysqli_query($con,"UPDATE product SET price=price+(".$reduction."/1.23) WHERE id='".$id."'");

HTML

<form method="post">
<input name="reduction" type="text" >
<input name="id" type="text" value="id" > <input name="submit" value="ID" type="submit">
</form>

最佳答案

你可以像这样使用“IN”函数

$result = mysqli_query($con,"UPDATE product SET price=price+(".$reduction."/1.23) WHERE id in('".$id."')");

关于php - SQL根据ID更新多行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31289720/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com