我有表invalidtext。在此表中,我有类似的记录

+----+---------+
| id |  text   |
+----+---------+
|  1 | Yahoo   |
|  2 | Gmail   |
|  3 | Windows |
+----+---------+


现在我有一个字符串像


  你好,雅虎,你好吗?


我想检查“您好,雅虎您好吗?”包含invalidtext表中的任何单词。

我们可以看到yahoo这个表中的单词,因此必须找到记录。

哪个查询可以搜索?

最佳答案

select text
from invalidtext
where '$input' like concat('%', text, '%')

10-08 02:25