gpt4 book ai didi

php - 你可以在 MySQL 中使用 "On Duplicate Key Update"的准备好的语句吗?

转载 作者:可可西里 更新时间:2023-11-01 06:54:29 25 4
gpt4 key购买 nike

我找不到任何关于在 MySQL 和 PHP 中使用带有“ON DUPLICATE KEY UPDATE”的准备好的语句的引用。我认为这是不可能的,对吗?

-吉姆

最佳答案

下面是这种用法的一般示例:

$db->prepare('
INSERT INTO tableName (id, col1, col2, col3...)
VALUES (?,?,?,?)
ON DUPLICATE KEY
UPDATE col1 = VALUES(col1),
col2 = VALUES(col2),
col3 = VALUES(col3)
');

$stmt->bind_param('isss',
$id,
$col1,
$col2,
$col3
);
$db->execute($stmt);

if ($id == null) { //If you need the auto increment from the insert.
$newId = $stmt->insert_id;
}

关于php - 你可以在 MySQL 中使用 "On Duplicate Key Update"的准备好的语句吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2818300/

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