gpt4 book ai didi

php - 为什么我的查询不按子字符串匹配?

转载 作者:行者123 更新时间:2023-11-29 06:17:16 25 4
gpt4 key购买 nike

我想在我的网站上使用我自己的脚本,目前我有这个:

SELECT
recipes.name,
recipes.details,
recipes.img_URL,
ingredients.recipe_ID,
products.name,
count(*),
recipes.added_by,
recipes.id
FROM
recipes
Inner Join ingredients ON recipes.ID = ingredients.recipe_ID
Inner Join products ON ingredients.product_ID = products.ID
WHERE
products.name = $value
GROUP BY
recipes.ID ORDER BY
count(*) DESC

但它的问题是,如果我搜索像“egg”这样的词,它不会找到“eggs”,我已经尝试过 LIKE 命令,但都不起作用。

有什么想法吗?

最佳答案

mysql 搜索的通配符是 %。

更改您的搜索,使 SQL 查询不再是 = $value,而是 LIKE $value% -即鸡蛋%

关于php - 为什么我的查询不按子字符串匹配?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5741863/

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