sql server like 子句
大家好,我在 SQL Server 表中有一个列是 nvarchar(max)。我用以下命令查询表:
从 CrossArticle_Article 中选择 *,其中摘要如“%PHILADELPHIA-BASED GUITARIST AND Composer Tim%”
如果我在 like 子句中输入 5 个单词,我会得到一个结果,如果我添加更多单词,即使记录存在,我也不会得到任何结果。备案有什么限制吗?
Hey guys, I have a column in an sql server table that is nvarchar(max). I query the table with:
select * from CrossArticle_Article where Summary like '%PHILADELPHIA-BASED GUITARIST AND composer Tim%'
If I enter 5 words in the like clause, I get a result, if I add more words, I dont get any results, even if the record exists. Is there any limitation for the records?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有限制。我怀疑
LIKE
子句行为正常,但您的数据是导致您未获得预期结果的原因。您能否发布一些数据来帮助说明您在结果集中期望的记录?
There's no limitation. I suspect the
LIKE
clause is behaving properly, but your data is the cause of you not getting the results you're expecting.Can you post some data to help illustrate those records that you expect in your resultset?