秒数
两个时间戳之间相减得到的就是秒数。
示例:文章来源:https://www.toymoban.com/news/detail-515281.html
select unix_timestamp("2022-11-08 14:00:00") - unix_timestamp("2022-11-08 13:00:00");
输出结果为:3600
分钟
两个时间戳相减的值除以 60
得到的就是分钟。
示例:
select (unix_timestamp("2022-11-08 15:00:00") - unix_timestamp("2022-11-08 13:00:00")) / 60;
输出结果为:120.0
小时
两个时间戳相减的值除以 3600
得到的就是小时。
示例:
select (unix_timestamp("2022-11-08 17:00:00") - unix_timestamp("2022-11-08 13:00:00")) / 3600;
输出结果为:4.0
天数
两个时间戳相减的值除以 3600 * 24
得到的就是天数。
示例:
select cast((unix_timestamp("2022-11-09 17:00:00") - unix_timestamp("2022-11-08 13:00:00")) / (3600 * 24) as int);
输出结果为:1
文章来源地址https://www.toymoban.com/news/detail-515281.html
到了这里,关于在 SQL 中计算两个时间戳相隔的天时分秒的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!