gpt4 book ai didi

php - Mysql更新使用限制

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

我有这个代码

$sql="select * from wifi where status!='off' limit 0, $limit";
$result=mysql_query($sql);
$i=1;
while($row=mysql_fetch_array($result)){
echo $i.") ".$row["user"]." - ".$row["password"]."<br/>";
$i++;
}

现在我想用 status=off 更新输出结果的行

我正在尝试使用

$sql="Update wifi Set staus='off' limit 0,6"

但是没用

最佳答案

$sql="Update wifi Set staus='off' WHERE id IN (
select id from wifi where status!='off' limit 0, $limit
)"

使用相应的名称更正您的 id 字段。

关于php - Mysql更新使用限制,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33345246/

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