使用选择选项获取行的平均值
我正在开始一个小型公司的出勤项目,现在我想添加一个与员工绩效记录相关的表格。 有一些评分区域,如准时性、主动性、团队合作精神及其范围 比如1代表差,2代表一般,3代表好…… 所以我为每个区域选择下拉菜单,但最后一个功能是平均总体评分 那么我该如何管理它们。如何获得所有价值的平均值?
i am working start on a small company project of attendence, and now I am want add a form related employee performance record.
there are some rating area like punctuality,initive,team player and its perameter
like 1 for poor,2 for fair, 3 for good and....
so I make select drop down for every area, but at last a feature is average overall rating
so how can I manage them .how can get average of all value?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
平均值的计算方式为值的总和除以这些值的数量,例如:如果您获得 3、3、2、5 等评级,则平均值为
(3 + 3 + 2 + 5)/5
即2.6
。Average is computed as a sum of values divided by number of these values, e.g.: if you get ratings like 3, 3, 2, 5 then the average is
(3 + 3 + 2 + 5)/5
which is2.6
.因此,您只需将这些值相加,然后除以值的数量 - 问题出在哪里?
*从 your_table 中选择 AVG(your_field) ?*
So you only have to sum up the values and then divide through the amount of values - where is the problem?
*SELECT AVG(your_field) FROM your_table ?*