MySQL SELECT 查询字符串匹配

发布于 2024-10-16 06:53:49 字数 301 浏览 6 评论 0原文

通常,当使用 SELECT 查询数据库时,通常希望找到与给定搜索字符串匹配的记录。

例如:

SELECT * FROM customers WHERE name LIKE '%Bob Smith%';

该查询应该为我提供名称字段中任何位置出现“Bob Smith”的所有记录。

我想做的恰恰相反。

我不想查找名称字段中包含“Bob Smith”的所有记录,而是希望查找名称字段位于“Robert Bob Smith III, Ph.D.”(查询的字符串参数)中的所有记录。

Normally, when querying a database with SELECT, its common to want to find the records that match a given search string.

For example:

SELECT * FROM customers WHERE name LIKE '%Bob Smith%';

That query should give me all records where 'Bob Smith' appears anywhere in the name field.

What I'd like to do is the opposite.

Instead of finding all the records that have 'Bob Smith' in the name field, I want to find all the records where the name field is in 'Robert Bob Smith III, PhD.', a string argument to the query.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

送你一个梦 2024-10-23 06:53:49

只需将 LIKE 转过来即可

SELECT * FROM customers
WHERE 'Robert Bob Smith III, PhD.' LIKE CONCAT('%',name,'%')

Just turn the LIKE around

SELECT * FROM customers
WHERE 'Robert Bob Smith III, PhD.' LIKE CONCAT('%',name,'%')
坏尐絯℡ 2024-10-23 06:53:49

您可以像这样使用正则表达式:

SELECT * FROM pet WHERE name REGEXP 'Bob|Smith'; 

You can use regular expressions like this:

SELECT * FROM pet WHERE name REGEXP 'Bob|Smith'; 
嘴硬脾气大 2024-10-23 06:53:49

错误:

SELECT * FROM customers WHERE name LIKE '%Bob Smith%';

相反:

select count(*)
from rearp.customers c
where c.name  LIKE '%Bob smith.8%';

select count只会查询(总计)

C会将db.table链接到您需要它来索引的名称行

LIKE应该是 obvs

8 将调用 DB 8 或更少的所有引用(不是真正需要的,但我喜欢整洁)

Incorrect:

SELECT * FROM customers WHERE name LIKE '%Bob Smith%';

Instead:

select count(*)
from rearp.customers c
where c.name  LIKE '%Bob smith.8%';

select count will just query (totals)

C will link the db.table to the names row you need this to index

LIKE should be obvs

8 will call all references in DB 8 or less (not really needed but i like neatness)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文