已关闭。此问题需要details or clarity。当前不接受答案。
**想要改进此问题?**添加详细信息并通过editing this post阐明问题。
3天前关闭。
Improve this question
我尝试使用LIKE
搜索多个字符串,但需要一个变通方案,而不是使用多个OR
和AND
。
我使用了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%'
1条答案
按热度按时间pbpqsu0x1#
给你。
而且...只是为了任何想要相反的人...而不是像...