GQL(Google 应用引擎)中的 OR 条件返回错误 为什么?
当我在 GQL 中使用 OR 条件时,它返回错误消息“BadQueryError:解析错误:符号 OR 处没有其他符号。为什么?
db.GqlQuery("Select * from vendor where access='public' OR organisation_id='"+ orgid +"'")
When i use the OR condion in GQL it return error messege tht "BadQueryError: Parse Error: Expected no additional symbols at symbol OR . Why?
db.GqlQuery("Select * from vendor where access='public' OR organisation_id='"+ orgid +"'")
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
文档清楚地表明 GQL 没有 OR 运算符..
您可以执行类似的操作..进行两个查询并合并结果...
Docs clearly says that GQL doesn't have an OR operator..
You could do something like this ..Make two queries and combine the results...