为什么我会收到“缺少操作员”错误?
我不断收到相同的错误:缺少操作员。这段代码我看了三遍也没找到。有眼尖的人可以帮忙吗?
WHERE ([Letter Status].[Letter_Status] = “Agreed” AND [Research].[Site] = 9)
OR ([Telephone Status].[Details]= “Agreed” AND [Research].[Site] = 9)
I keep getting the same error: Missing Operator. I have looked over this code three times and cannot find it. Can someone with a keen eye please help?
WHERE ([Letter Status].[Letter_Status] = “Agreed” AND [Research].[Site] = 9)
OR ([Telephone Status].[Details]= “Agreed” AND [Research].[Site] = 9)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不确定“”
也许来自这篇文章,但将它们更改为“”:
I'm not sure about that “”
Maybe is from this post, but change them to "" :
通常它是一个拼写错误的表或字段名称、两个空格而不是一个、一个空格而不是“_”、任何丢失的字母或类似的东西。
在 MS Access 中创建一个新查询并将整个查询放入,然后运行它。 Access GUI 很可能会更详细地告诉您这里到底缺少什么。
Usually it is a misspelled table or field name, two spaces instead of just one, a space instead of "_", any missing letter or something like that.
Create a new query in MS Access and put the whole query in, then run it. The Access GUI most probably tells you more detailed what exactly is missing here.