gpt4 book ai didi

php - 带有 LIKE 的 sql 查询

转载 作者:行者123 更新时间:2023-11-29 04:48:42 25 4
gpt4 key购买 nike

我有一个奇怪的问题请看一下这个查询:

select * from myfriend where name like "%n%";

当在 phpMyAdmin 上执行这个查询时,查询返回了正确的结果,但是当使用 php 执行时,没有返回结果。

请注意此查询是在 drupal 6 中执行的。

char "n"和 PHP 有什么问题?

最佳答案

百分号在 Drupal 6 查询中用作占位符,因此您需要对它们进行转义:

$query = db_query('select * from myfriend where name like "%%n%%"');

关于php - 带有 LIKE 的 sql 查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14561008/

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