gpt4 book ai didi

mysql - 用。。。来代替 &

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

运行以下代码时,我遇到一条错误消息,指出我在这一行中使用的分号:

$select_stock->addExpression("REPLACE(b.corporateName, '&', '&')");

因为&符号放置不正确

InvalidArgumentException: ; is not supported in SQL strings. Use only one statement at a time.

还有其他方法可以解决这个问题吗?

public function c_form_db_2($cName) {
$select_stock = $this->connection->select('stock', 'a');
$select_stock->fields('a', ['high', 'low', 'stockname']);
$select_stock->innerJoin('stockdetails', 'b', 'b.high = a.high');
$select_stock->condition('a.isCurrentPrice', 'Yes');
$select_stock->condition('a.isActive', 'Yes');
$select_stock->condition('b.status', 'Closing');
$select_stock->addExpression("REPLACE(b.corporateName, '&', '&')");
$select_stock->escapeLike($cName);
$select_stock->orderBy('a.tickerId', 'DESC');
$select_stock->orderBy('a.volId', 'DESC');
$select_stock_rows = $select_stock->execute()
->fetchAll(\PDO::FETCH_ASSOC);
return $select_stock_rows;
}

最佳答案

我不了解 Drupal,但我认为 REPLACE 是标准的 MySql 函数并且 Drupal 支持所有这些函数。在这种情况下,如果碰巧你运行的是 MySql 8,那么不要使用 REPLACE,而是使用 REGEXP_REPLACE 并匹配正则表达式“&.”。使用通配符“.”为了 ';'假设';'的字符是唯一会被通配符匹配的字符。

关于mysql - 用。。。来代替 &,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56670828/

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