gpt4 book ai didi

MySQL 搜索精确匹配

转载 作者:行者123 更新时间:2023-11-29 09:44:23 25 4
gpt4 key购买 nike

我想在 SQL 中搜索完全匹配:

在用户表的 searchString 列中,我有:

alan@xxx.com 654433 active other text
ted@xsdd.com 43434 inactive other text

我只想搜索事件或非事件:

SELECT u FROM User u WHERE u.searchString = 'active'

SELECT u FROM User u WHERE u.searchString = 'inactive'

但它会返回任一语句的两行。

预期结果:

searchString = 'active' 仅返回 alan@xxx.com 行

searchString = 'inactive' 仅返回 ted@xsdd.com 行

请帮忙。谢谢。

最佳答案

使用 like 运算符和 OR 条件

SELECT u FROM User u WHERE u.searchString like '%active%' 
or u.searchString like '%inactive%'

关于MySQL 搜索精确匹配,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55963131/

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