How do I find the maximum value in a particular column of a table in the GAE datastore using GQL?
Asked
Active
Viewed 2,389 times
1 Answers
11
To get the max you using GQL, you could do this:
max_x = db.GqlQuery("SELECT * FROM MyModel ORDER BY x DESC").get().x
You could use this syntactically shorter but equivalent approach:
max_x = MyModel.all().order('-x').get().x

David Underhill
- 15,896
- 7
- 53
- 61