8.05 确定两个日期之间的秒分小时数
Posted 长城之上是千亿的星空,星空之上是不灭的守望。
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了8.05 确定两个日期之间的秒分小时数相关的知识,希望对你有一定的参考价值。
select datediff(ward_hd,allen_hd)*24 hr,
datediff(ward_hd,allen_hd)*24*60 min,
datediff(ward_hd,allen_hd)*24*60*60 sec
from (
select max(case when ename=‘WARD‘
then hiredate
end) as ward_hd,
max(case when ename=‘ALLEN‘
then hiredate
end ) as allen_hd
from emp
) x;
以上是关于8.05 确定两个日期之间的秒分小时数的主要内容,如果未能解决你的问题,请参考以下文章