减去后的 MS Access 平均值
如何减去这两列,然后按 col3
找到它们的平均分组:
col1, col2, col3
02:00:00, 04:00:00, 4
02:00:00, 05:00:00, 3
我想要这种格式的结果:小时:分钟:秒
谢谢
how can I subtract these two columns and then find their average grouping by col3
:
col1, col2, col3
02:00:00, 04:00:00, 4
02:00:00, 05:00:00, 3
i want the result in this format: Hours:Minutes:Seconds
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
以秒为单位获取 col1 和 col2 的差异
并将其保存为查询
然后在第一个查询上构建分组查询。对其求平均值
,并使用格式函数将平均值转换回时间格式 - 例如,
使用引用回复
(您可以在同一查询中执行此操作,或者在前一个查询的基础上构建一个新查询)
Get the difference of col1 and col2 in seconds
and save that as a query
Then build a group-by query on the first query. Put an average on it
and convert the avg back to a time format using the format function - e.g.,
Reply With Quote
(you could do this in the same query, or build a new one off of the previous one)