次のような、Google Query Language で丸めを使用する一連のクエリを実装したいと思います。
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