多词搜索类似-- SQL Server [已关闭]

roqulrg3  于 2023-01-29  发布在  SQL Server
关注(0)|答案(1)|浏览(207)

已关闭。此问题需要details or clarity。当前不接受答案。
**想要改进此问题?**添加详细信息并通过editing this post阐明问题。

3天前关闭。
Improve this question
我尝试使用LIKE搜索多个字符串,但需要一个变通方案,而不是使用多个ORAND
我使用了Contains,但在此处显示了错误。我尝试了Web上列出的其他SQL Server解决方案,但它不起作用
不能对表或索引视图“Production.Table1”使用CONTAINS或FREETEXT predicate ,因为它没有全文索引。

Select Name, col1, col2
From xyz.table
Where Name Like '%Mountain%'
  and Name Like '%Road%'
  and Name Like '%red%'
pbpqsu0x

pbpqsu0x1#

给你。

select country_cde, date, name, age
where
(country_cde like 'BR%' 
or country_cde like 'US%' 
or country_cde like 'CA%')
from travel_det

而且...只是为了任何想要相反的人...而不是像...

select country_cde, date, name, age
where
(country_cde not like 'BR%'
or country_cde not like 'US%'
or country_cde not like 'CA%')
from travel_det

相关问题