SQL查询根据生日计算ji
Posted 小美lmt
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SQL查询根据生日计算ji相关的知识,希望对你有一定的参考价值。
select Case when DateDiff(Year, BirthDate, GetDate()) > 0 then DateDiff(Year, BirthDate, GetDate())
when DateDiff(Month, BirthDate, GetDate()) > 0 then DateDiff(MONTH, BirthDate, GetDate())
When DATEDIFF(DAY, BirthDate, GetDate()) > 0 then DateDiff(DAY, BirthDate, GetDate()) end Age,
Case When DateDiff(Year, BirthDate, GetDate()) > 0 then ‘岁‘
When DateDiff(Month, BirthDate, GetDate()) > 0 then ‘月‘
When DATEDIFF(DAY, BirthDate, GetDate()) > 0 then ‘日‘ end AgeUnit, BirthDate BirthDate
From 人员信息
以上是关于SQL查询根据生日计算ji的主要内容,如果未能解决你的问题,请参考以下文章