作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何在mysql中从日期和时间中减去小时数?
2010-12-04 17:07:14 and 2010-05-30 17:07:19
最佳答案
我假设您的意思是在减去两个日期时需要小时数。如果是这样的话,我在这里找到了以下内容:http://www.dbforums.com/mysql/1637603-datediff-hours.html
You can convert both times to seconds using unix_timestamp. Then subtract one from other to get number of seconds between both times. Then divide by 3600 to get the number of hours
select ( unix_timestamp( "2010-12-04 17:07:14" ) -
unix_timestamp("2010-05-30 17:07:19" ) ) / 3600
*注意:这仅适用于 1970 年之后的日期
关于datetime - 如何从mysql中的日期和时间中减去小时数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3844008/
我是一名优秀的程序员,十分优秀!