python – 谷歌应用程序引擎gql查询具有相同字符串的两个属性

我有一个名为Game的数据模型.

在Game模型中,我有两个名为player1和player2的属性,它们是它们的名称.

我想在游戏中找到一个玩家但是我不知道如何构建查询因为gql不支持OR子句然后我不能使用select * from game其中player1 =’tom’或者player2 =’tom’语句.

那么,我该如何解决这个问题呢?
我是否必须修改我的数据模型?

最佳答案 使用当前的数据模型,您需要执行2个查询,一个用于player1,另一个用于player2,然后将结果合并到本地
Python代码中.

另一个需要更改模式的选项是用单个ListProperty替换两个字段,例如:

class Game(db.Model):
  players = db.ListProperty()

game1.players = ['tom', 'bob']
game2.players = ['joe', 'tom']

# this query will match all games where tom is one of the players
query = Game.all().filter('players =', 'tom')

这是有效的,因为现在可以使用单个索引查询玩家.

点赞