如何使SQL SERVER 2005忽略以下搜索中的反斜杠:
select [description] from MyTable where contains([description], '3/4 and bear')它在"/“上被吹掉了!
发布于 2009-05-22 16:11:35
尝试使用“”3/4 and bear“”
发布于 2009-05-04 19:50:11
尝尝这个
从MyTable中选择描述
where description LIKE '%3/4 and bear%'
https://stackoverflow.com/questions/821660
复制相似问题