码迷,mamicode.com
首页 > 其他好文 > 详细

8.04 确定两个日期之间的月份数或年数

时间:2017-09-14 23:40:29      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:select   日期   mnt   rom   red   sel   之间   from   min   

select mnth,mnth/12
from
(select (year(max_hd) - year(min_hd))*12 +
(month(max_hd) - month(min_hd)) as mnth
from (
select min(hiredate) as min_hd,max(hiredate) as max_hd
from emp
) x
) y;

8.04 确定两个日期之间的月份数或年数

标签:select   日期   mnt   rom   red   sel   之间   from   min   

原文地址:http://www.cnblogs.com/liang545621/p/7523303.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!