2

我想用谷歌查询语言实现一系列的四舍五入查询,例如:

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

或int / floor /等的任何组合。

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

有没有办法做到这一点?我怀疑没有,因为 GQL 中的标量函数列表非常有限,但想知道是否有解决方法。

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

4

2 回答 2

3

在查询末尾添加格式,例如:

"select age format age '0'"

请参阅Google 查询语言参考 - 格式

于 2020-07-28T17:25:25.953 回答
1

不,我认为我们不能在 GQL 中进行舍入...

您显示的链接不适用于谷歌应用引擎...

于 2011-10-15T06:23:29.577 回答