本文介绍了如何获取数据库中的总和和行数?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个包含以下数据的表

cnt_num .....点
1 .............. 500
1 .............. 1000
2 .............. 111
2 .............. 100
1 .............. 55

我需要将输出作为

cnt_num ..... total_points .... num_activity(row_count)
1 .................. 1555 ................................ 3
2 .................. 211 ................................. 2

我是数据库新手,一直在寻找解决方案.
任何帮助表示赞赏.在此先感谢

解决方案



i have a table with following data

cnt_num .....points
1.............. 500
1.............. 1000
2.............. 111
2.............. 100
1.............. 55

i need to get output as

cnt_num .....total_points....num_activity (row_count)
1.................. 1555.......................3
2 ..................211........................2

i am new in database and have been searching allover for solution.
any help is appreciated. thanks in advance

解决方案



这篇关于如何获取数据库中的总和和行数?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-23 19:13