Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我不知道我的标题是否准确地说明了我尝试做的事情,但这里当然是一个例子。
例如
我有一个字段 id | 的数据库。动物 | 人口......这都是关于动物领域的。我有一个字符串,例如“动物是狐狸”或“狐狸是棕色的”。
我想通过一个 mysql 查询传递这个字符串,它将返回我的“狐狸”作为匹配项。
先感谢您!
缺口
SELECT * FROM tableName WHERE 'the animal is a fox' LIKE CONCAT('%', animal ,'%')