【发布时间】:2011-06-21 05:30:22
【问题描述】:
例如:
我如何找到单词:“hello”是否在“greetings”列中?
【问题讨论】:
标签: sql postgresql contains
例如:
我如何找到单词:“hello”是否在“greetings”列中?
【问题讨论】:
标签: sql postgresql contains
SELECT * FROM tab where col1 LIKE '%help%' OR col2 LIKE '%hello%'
等等……
【讨论】: