AppEngine GqlQuery(如果不是)
我想找到电话号码不为空的公司的所有员工。
现在我有这个:
db.GqlQuery('SELECT * FROM Employee '
'WHERE company = :company '
'AND phone > :nophone', company=company, nophone=None)
但是尽管有带有电话号码的项目,但它总是打印出空结果。
I want to find all employees from a company where the telephone number is NOT empty.
Now I have this:
db.GqlQuery('SELECT * FROM Employee '
'WHERE company = :company '
'AND phone > :nophone', company=company, nophone=None)
But this always prints out empty results although there are items with telephone number.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用
此处详细了解运算符
try to use
read more about the operators here