gpt4 book ai didi

php - MySQL搜索字符串包含的位置

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

我想在 MySQL 数据库中搜索作者姓名。问题是可以用多种方式拼写(或输入数据库)相同的作者姓名。我需要检查相似 名称。

我的authors 表的示例如下;

+---------+-------------+
| id | author |
+---------+-------------+
| 1 | JK Rowling |
+---------+-------------+
| 2 | J.K Rowling |
+---------+-------------+
| 3 | Rowling JK |
+---------+-------------+
| 4 | Rowling J.K |
+---------+-------------+
| 5 | JK. Rowling |
+---------+-------------+
| 6 | Jim Jones |
+---------+-------------+

我想查找“J.K Rowling”的所有书籍,所以我使用的查询是;

SELECT *
FROM `authors`
WHERE `author` LIKE '%J.K Rowling%'

返回无结果

SELECT *
FROM `authors`
WHERE `author` LIKE 'J.K Rowling%'

返回无结果

SELECT *
FROM `authors`
WHERE `author` LIKE '%J.K Rowling'

返回无结果

我应该如何构建查询以返回相似的作者

谢谢

最佳答案

这个名字好像和罗琳差不多,我应该试试这个。

SELECT *
FROM `authors`
WHERE `author` LIKE '%Rowling%'

关于php - MySQL搜索字符串包含的位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43802328/

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