gpt4 book ai didi

php - 更新 SQL 表的行

转载 作者:行者123 更新时间:2023-11-30 22:43:53 24 4
gpt4 key购买 nike

我有一个表,其中有一列名为“状态”。 'status'的默认值为0。我想在使用后将其值更新为'1'。我基本上想检查状态是否为 0,如果是,则执行操作然后将值更改为 1。

这是代码。除了 0 的值没有更改为 1 之外,一切都完美无缺。我是新手所以也许是一个非常基本的错误:(

<?php

$sql = "SELECT number, status FROM summonerid";
$result = $conn->query($sql);

if ($result->num_rows > 0) {

// output data of each row
while($row = $result->fetch_assoc()) {
$SummonerID = $row["number"];
$status = $row["status"];

if($status=='0'){
$recentgames=$lol->getRecentGames($SummonerID);
$MatchID1=$recentgames->games[0]->gameId;
$sql = "INSERT INTO matchid (number) SELECT * FROM (SELECT '$MatchID1') AS tmp WHERE NOT EXISTS (SELECT number FROM matchid WHERE number = '$MatchID1') LIMIT 1;";

$sql = "UPDATE summonerid SET status='1' WHERE status='0';"; // THIS IS THE PART THAT DOES NOT WORK WELL
}
}
}

?>

非常感谢任何帮助

最佳答案

试试这个..你没有执行sql语句

$sql = "SELECT number, status FROM summonerid";
$result = $conn->query($sql);

if ($result->num_rows > 0) {

// output data of each row
while($row = $result->fetch_assoc()) {
$SummonerID = $row["number"];
$status = $row["status"];

if($status=='0'){
$recentgames=$lol->getRecentGames($SummonerID);
$MatchID1=$recentgames->games[0]->gameId;
$sql = "INSERT INTO matchid (number) SELECT * FROM (SELECT '$MatchID1') AS tmp WHERE NOT EXISTS (SELECT number FROM matchid WHERE number = '$MatchID1') LIMIT 1;";

$result1 = $conn->query($sql);
$sql = "UPDATE summonerid SET status='1' WHERE status='0';";
$result1 = $conn->query($sql);
}
}
}

?>

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

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