Here’s a query to calculate the Age in Years, Months, Days, Hours and Minutesdeclare @birth_day datetime
set @birth_day ='19660527 12:34:22'
select
(
set @birth_day ='19660527 12:34:22'
select
years,
months,
case
when day(@birth_day)>day(getdate())then day(getdate()) + datediff(day,@birth_day,dateadd(month,datediff(month,0,@birth_day)+1,0))-1else day(getdate())-day(@birth_day)
end as days,from
datepart(hour,convert(varchar(10),dateadd(minute,minutes,0),108)) as hours,
datepart(minute,convert(varchar(10),dateadd(minute,minutes,0),108)) as minutes
(
select
years,datediff(month,dateadd(year,years,@birth_day),getdate())+case
when day(getdate())>=day(@birth_day)then 0else -1
end as months,datediff(minute,convert(varchar(8),@birth_day,108),convert(varchar(8),getdate(),108)) as minutes
from
(
select
Read more: SQL Server currydatediff(year,@birth_day,getdate()) +
0 comments:
Post a Comment