匹配字符串与关键字
Posted
技术标签:
【中文标题】匹配字符串与关键字【英文标题】:Matching string against keywords 【发布时间】:2017-02-14 21:55:20 【问题描述】:我有一个包含文本字符串的字段,例如:
Credit for an item
Credit for menu
Debit for food
Credit for food
Debit for Delivery
Etc.
我想将它们分为影响调整和不影响调整两类
我正在尝试用 SQL 编写这个表达式:
If "Text_string" contain "Keywords: Food, Delivery", then "Impacting" else "None Impacting"
提前非常感谢
【问题讨论】:
是这两个关键字中的任何一个还是全部?如果有,那么这是PostgreSQL wildcard LIKE for any of a list of words 的副本。如果是全部,那么这是 Multiple LIKE and AND operators in RAILS/POSTGRESQL 的副本。 【参考方案1】:select case
when text_string ilike '%food%' and
text_string ilike '%delivery%' then 'Impacting'
else 'None impacting'
end as IsImpacting
from YourTable
【讨论】:
text_string ilike '%food%' and text_string ilike '%delivery%' then 'Impacting' or text_string ilike '%food%' or text_string ilike '%delivery%' then 'Impacting'以上是关于匹配字符串与关键字的主要内容,如果未能解决你的问题,请参考以下文章
lua 正则表达式,用于将关键字与 PHP 采用的值进行匹配