使用Google查询语言进行舍入

时间:2011-10-10 01:33:09

标签: gql scalar

我想通过Google查询语言实现一系列查询,例如:

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

或int / floor / etc。

的任意组合
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

2 个答案:

答案 0 :(得分:1)

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

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

答案 1 :(得分:0)

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

"select age format age '0'"

请参见Google Query Language Reference - Format