gpt4 book ai didi

php - 使用 SQL 同时更新两个字段的语法

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

下面的代码给出了错误,我可能语法错误,我不知道在哪里。错误是:near '(``last_online``) VALUE ('now()) WHERE (users.id = 55)' at line 1

PHP代码:

   <?php 
include 'dbc.php';
session_start();
$user_ip = $_SERVER['REMOTE_ADDR'];

$id = $_SESSION['user_id'];

$sql_insert1 = "UPDATE `users` SET (`last_online`)
VALUES
('now()) WHERE (users.id = $id)";

mysql_query($sql_insert1) or die("Insertion Failed:" . mysql_error());
$sql_insert2 = "UPDATE `users` SET (`users_ip`)
VALUES
('$user_ip') WHERE (users.id = $id)";

mysql_query($sql_insert2) or die("Insertion Failed:" . mysql_error());

最佳答案

UPDATE 的语法语句是:

UPDATE table
SET col_name1={expr1|DEFAULT} [, col_name2={expr2|DEFAULT}] ...
[WHERE where_condition]

因此,您应该使用以下语句在单个语句中更新两个字段:

UPDATE `users` 
SET `last_online` = now(),
`users_ip` = '$user_ip'
WHERE (users.id = $id)

VALUES 关键字用于 INSERT声明。

关于php - 使用 SQL 同时更新两个字段的语法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12252459/

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