gpt4 book ai didi

php - 有没有办法选择一个部分匹配的值?

转载 作者:行者123 更新时间:2023-11-29 01:10:24 24 4
gpt4 key购买 nike

例如,考虑:

title 1: The Indiana Highway project
title 2: The Michigan Highway project

现在,当用户在表单框中输入 Highway 时,两个标题都需要显示。如果用户输入Michigan,则只需要显示一个标题(title 2)。

有没有办法在 MySQL 或 PHP 中执行此操作?

最佳答案

如果您总是只搜索一个词,您可以使用 LIKE 关键字。

SELECT someField, anotherField, FROM table WHERE aField LIKE '%Highway%'

% 是通配符,表示任何字符(或无字符)都可以位于 Highway 的左侧和右侧。

See documentation here.

如果您打算做一些更复杂的事情,请查看 full text search .

关于php - 有没有办法选择一个部分匹配的值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7196431/

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