计算同时具有距离和时间的列的平均速度(NULL 问题)
我的 MySQL 数据库中有两列。一个是距离列,另一个是时间列。在某些情况下,这些值之一或两个都是未知的,因此为 NULL。我想创建一个查询来查找平均速度,排除任何空条目。
例如:
Distance Time
60 60
120 60
NULL 45
30 NULL
NULL NULL
计算出的平均速度应为(60+120)/(60+60) = 1.5
谢谢!
I have two columns in a MySQL database. One is a distance column, and the other is a time column. In some cases one or both of these values is not known, and thus, NULL. I want to create a query that finds the average speed, excluding any null entries.
For instance:
Distance Time
60 60
120 60
NULL 45
30 NULL
NULL NULL
The computed average speed should be (60+120)/(60+60) = 1.5
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
聚合两个值都不为 NULL 的行:
Aggregate over the rows where both values are not NULL: