使用选择选项获取行的平均值

发布于 2024-12-19 11:16:30 字数 148 浏览 0 评论 0原文

我正在开始一个小型公司的出勤项目,现在我想添加一个与员工绩效记录相关的表格。 有一些评分区域,如准时性、主动性、团队合作精神及其范围 比如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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

千と千尋 2024-12-26 11:16:30

平均值的计算方式为值的总和除以这些值的数量,例如:如果您获得 3、3、2、5 等评级,则平均值为 (3 + 3 + 2 + 5)/52.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 is 2.6.

她说她爱他 2024-12-26 11:16:30

因此,您只需将这些值相加,然后除以值的数量 - 问题出在哪里?

*从 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 ?*

木有鱼丸 2024-12-26 11:16:30
<select>
  <option value="1">$lt;10</option>
  <option value="2">20-30</option>
</select>
<select>
  <option value="1">$lt;10</option>
  <option value="2">20-30</option>
</select>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文