我需要在查询中同时使用REPLACE
和SET
。这是可能的,还是我需要进行两个不同的查询? Maby我应该使用BEGIN
吗?
这是我的查询,并且我收到此警告消息:Invalid parameter number: number of bound variables does not match number of tokens
的PHP
$query = "REPLACE INTO TABLE(
column1,
column2)
VALUES(
:column1,
:column2)
SET
column3 = CONCAT(column3,':column3')";
$query_params = array(
':column1' => $column1,
':column2' => $column2,
':column3' => $column3);
最佳答案
不,您不能,但是如果column3只是column3中包含新数据的旧数据的CONCAT,则可以使用触发器。
SET NEW.column3 = CONCAT(OLD.column3, NEW.column3);