在阅读了您对其他答案的评论后,我得出一个结论,即您想要的是从表中获取行集,并且您希望每个集在 item_des 列中具有相似的值。至少这就是你的例子所呈现的。
问题在于您定义“相似”的方式。据我了解,您不想为查询提供任何其他数据来定义您正在寻找的相似性。AshReva 和 Naryl 假设你这样做了。这就是为什么他们建议您LIKE '%flower%' or LIKE 'fruit'
在查询中使用。
我想您要的是如何获取列表('fruit', 'flower', ...)
,因为您没有列表。您需要一个可以为您找到的查询。
这不是一件容易的事,它需要你做出大量的决定。这个任务相当复杂,所以我不打算提供一个准备好运行的解决方案。我将介绍一些您需要完成的相当简单的步骤。
首先,您需要标记您的 item_des 字段。您想要的是另一个名为 t 的表,其中包含一个字段,例如名为 token。标记您的示例后,您应该得到一个类似这样的表:
token
fruit
books
beautiful
flower
&
nice
smell
gud
fruit
flower
您可能必须编写自己的标记化函数。在这里检查:
是否有类似于 mySql 中的 split() 方法的东西?
然后删除重复项(distinct
在列上执行 a)。所以你得到:象征水果书籍美丽的花朵和好闻的气味
然后你可能想以某种方式删除无效的令牌。您可以手动执行此操作。您可能会针对某些关键字或字典进行自动匹配。您可能会应用一些启发式方法,例如删除长度为 1 个字符的标记。
之后,您只需在两个表之间进行匹配,即您的原始表(假设它称为 input_data)和包含您的标记的最终表 t:
select item_name, item_des, token
from input_data, t
where item_des like concat('%',t.token,'%')
order by token
然后你应该得到类似的东西:
item_name item_des token
jasmine beautiful flower & nice smell beautiful
jasmine beautiful flower & nice smell &
jasmine beautiful flower & nice smell nice
jasmine beautiful flower & nice smell smell
rose flower flower
jasmine beautiful flower & nice smell flower
orange gud fruit gud
orange gud fruit fruit
apple fruit fruit
books books books
我希望这是你需要的。