Google 查询语言中的舍入

发布于 2024-12-09 02:56:14 字数 504 浏览 1 评论 0原文

我想在Google查询语言中实现一系列带有舍入的查询,例如:

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

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

水晶透心 2024-12-16 02:56:14

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

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

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

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

苦妄 2024-12-16 02:56:14

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

"select age format age '0'"

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

Add a format at the end of the query, for example:

"select age format age '0'"

See Google Query Language Reference - Format.

‖放下 2024-12-16 02:56:14

尽管没有明确的舍入或下取整函数,但可以使用模运算符 % 以及 value % 1 返回 value< 的小数部分这一事实来实现它们/代码>。因此,value - value % 1 相当于 floor(value),至少对于正值来说是这样。更一般地说,value - value % k 应等于floor(value / k) * k

对于您的情况,您的查询应如下所示:

select age - age % 10, count(id) group by age - age % 10

Although there are no explicit round or floor functions, one can implement them using the modulus operator % and the fact that value % 1 returns the decimal part of value. So value - value % 1 is equivalent to floor(value), at least for positive values. More generally value - value % k should be equivalent to floor(value / k) * k.

In your case, your query should look like:

select age - age % 10, count(id) group by age - age % 10
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文