图:1-1
这里有两列数据
1.分类统计
select test_id,user_id,sum(test_id) over(partition by user_id) from 表名
EG:partition是划分的意思,在这里上面的SQL语句我们可以理解成递增相加TEST_ID(sum函数)通过USER_ID,说白了就是分组相加
结果为:
图1-2
2.如果不需要已某个栏位的值分割
还是以图1-1作为讲解
如果我们不需要以某个值为划分,SQL语句可写成:
select test_id,user_id,sum(test_id) over(partition by null) from 表名
结果为: