MySQL SELECT 查询字符串匹配
通常,当使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
只需将 LIKE 转过来即可
Just turn the LIKE around
您可以像这样使用正则表达式:
You can use regular expressions like this:
错误:
相反:
select count
只会查询(总计)C
会将db.table链接到您需要它来索引的名称行LIKE
应该是 obvs8
将调用 DB 8 或更少的所有引用(不是真正需要的,但我喜欢整洁)Incorrect:
Instead:
select count
will just query (totals)C
will link the db.table to the names row you need this to indexLIKE
should be obvs8
will call all references in DB 8 or less (not really needed but i like neatness)