我有一个字符串'from+google+world'
对于我们正在使用的单个查询,我需要在任何地方搜索整个三个关键字的文本,
select * from tabl name
where desc like '%from%'
and desc like '%google%'
and desc like '%world%'
如何拆分字符串并将其与上述查询一起使用。
@p1+@p2+@p3
select * from tabl name
where desc like '%@p1%'
and desc like '%@p2%'
and desc like '%@p3%'
Radu Gheorghiu:这个命令有 50% 的帮助,它只是用 De-Limiter 拆分字符串很好' 和 desc 不像'所有@p3 的事情都是@p1 很好'