匹配关键字的字符串
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了匹配关键字的字符串相关的知识,希望对你有一定的参考价值。
我有一个包含文本字符串的字段,例如:
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"
首先十分感谢
答案
select case
when text_string ilike '%food%' and
text_string ilike '%delivery%' then 'Impacting'
else 'None impacting'
end as IsImpacting
from YourTable
以上是关于匹配关键字的字符串的主要内容,如果未能解决你的问题,请参考以下文章