MySQL查询获取列的模态平均值?
我一直在记录控制面板用户的窗口高度。
我有一个像这样的表:
user_id(INT) | window_height(INT)
--------------------------------
123 | 1200
124 | 1200
125 | 1100
126 | 1200
我有数千行,想要获得模态平均值。
即 1200px = 300 个用户,1100px = 125 个用户,500 像素 = 12 个用户
我正在寻找一个 MySQL 查询,我可以直接进入 PhpMyAdmin....
I've been recording the window height of users of my control panel.
I have a table like so:
user_id(INT) | window_height(INT)
--------------------------------
123 | 1200
124 | 1200
125 | 1100
126 | 1200
I have thousands of rows and would like to get the Modal averages.
ie 1200px = 300users, 1100px =
125users, 500px = 12users
I'm looking for a MySQL query i can just bang into PhpMyAdmin....
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
获取原始计数
获取模态平均值(如果最高计数存在关联,这将显示多个值)
这使用了 MySQL 技巧,即在通过聚合子查询时使用变量来存储最大计数。操作摘要
To get raw counts
To get the modal average (this will show multiple values if there are ties for the highest count)
This uses a MySQL trick of using a variable to store the max count as it goes through the aggregated subquery. Summary of operations