MySQL - 如何求和时间?

MySQL - How to SUM times?(MySQL - 如何求和时间?)
本文介绍了MySQL - 如何求和时间?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个包含以下格式的日期时间值的表格:

I have a table that contains date-time values in this format:

开始

2009 年 1 月 13 日上午 7:00:00

1/13/2009 7:00:00AM

结束

1/13/2008 2:57:00PM

1/13/2008 2:57:00PM

我使用str to date"函数将这些转换为日期时间格式.

I use the 'str to date' function to convert these into a date-time format.

我如何计算它们之间的差异?然后将其汇总起来,以总小时数显示(即一周的总小时数为 40:53).

How do I calculate a difference between them? And then sum it all up so that it displays in total hours (ie total hours for week is 40:53).

我正在尝试 timediff 函数,但结果不求和.

I was trying the timediff function but the results don't sum.

推荐答案

尝试查看 UNIX_TIMESTAMPSEC_TO_TIME.

您可以总结时间戳之间的差异,然后使用该值(以毫秒为单位)来获取时间:

You would sum up the differences between the timestamps, then use that value (would be in milliseconds) to get the time:

SELECT SEC_TO_TIME(time_milis / 1000)
FROM (
   SELECT SUM(UNIX_TIMESTAMP(date1) - UNIX_TIMESTAMP(date2)) as time_milis
   FROM table
)

这篇关于MySQL - 如何求和时间?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Hibernate reactive No Vert.x context active in aws rds(AWS RDS中的休眠反应性非Vert.x上下文处于活动状态)
Bulk insert with mysql2 and NodeJs throws 500(使用mysql2和NodeJS的大容量插入抛出500)
Flask + PyMySQL giving error no attribute #39;settimeout#39;(FlASK+PyMySQL给出错误,没有属性#39;setTimeout#39;)
auto_increment column for a group of rows?(一组行的AUTO_INCREMENT列?)
Sort by ID DESC(按ID代码排序)
SQL/MySQL: split a quantity value into multiple rows by date(SQL/MySQL:按日期将数量值拆分为多行)