标签: hive hiveql
我有一个关于蜂巢的问题。
在下表中
我想计算从v1到v100的所有总和。
create table test (v1 int, v2 int, ... v99 int, v100 int);
我可以计算如果我这样做,但我想知道如何更短地描述它。
select v1 + v2 + ... + v99 + v100 from test;
我调查了是否可以使用正则表达式等简要地写出来,但是没有找到它。