Search code examples
gqlscalar

Rounding in Google Query Language


I'd like to implement a series of queries with rounding in Google Query Language, such as:

select round(age,-1), count(id) group by round(age,-1)

or any combination of int/floor/etc.

select int(age/10)*10, count(id) group by int(age/10)*10

Is there any way to do that? I suspect no, as the list of scalar functions in GQL is very limited, but do wonder if there's a workaround.

http://code.google.com/apis/chart/interactive/docs/querylanguage.html#scalar_functions


Solution

  • No, I dont think we can do rounding in GQL...

    The link that you have shown is not for google app engine...