gpt4 book ai didi

php - 不更新mysql中的多行

转载 作者:行者123 更新时间:2023-11-29 14:06:32 24 4
gpt4 key购买 nike

$match_id = 123; // this is the value to be updated
$update_item_number = "(3,4,5)"; // this is the id no where the value to be updated
//update query
$orders = "UPDATE orders SET item_number='$match_id' WHERE order_id IN'".$update_item_number ."'";
mysql_query($orders);

此查询未更新,我被困在这里请帮助我...

最佳答案

修改您的查询:

"UPDATE orders SET item_number=$match_id WHERE order_id IN $update_item_number";

整数不需要撇号(它们是可选的,但最好使用纯 int 值)。

此外,在 IN 语句中,语句 (...) 前后不应有 '

关于php - 不更新mysql中的多行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14258522/

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