我们有修饰符[with totals],它可以汇总所有行中的值,并得到键值为0或null或smth的总结果。问题是我不明白如何在下一次计算中使用这些值
也许我用错格式了
select processing_date,count(*)
from `telegram.message`
where processing_date>='2019-05-01'
group by processing_date with totals
我们有修饰符[with totals],它可以汇总所有行中的值,并得到键值为0或null或smth的总结果。问题是我不明白如何在下一次计算中使用这些值
也许我用错格式了
select processing_date,count(*)
from `telegram.message`
where processing_date>='2019-05-01'
group by processing_date with totals
2条答案
按热度按时间von4xj4u1#
文件上说
可以与子查询中的总计一起使用,包括join子句中的子查询(在本例中,将合并各自的总值)。
联接中的子查询示例(ch测试github中的脚本):
作为一种解决方法,您可以使用客户机库合并多个总计的结果。
ttisahbt2#
使用“with rollup”而不是“with totals”决定了格式的问题