我有一个包含The weather is $condition with $temp degree.
列的表格。给定一个字符串,我需要找到表中包含关键短语的所有行。
例如:
keyphrase
。a test
我认为Hello this is a test string
可以解决问题,但我认为我需要做相反的事情。
答案 0 :(得分:1)
select *
from KeyPhraseTable kp
where 'Hello this is a test string' ILIKE '%' || kp.keyphrase || '%'