最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
sql通过日期判断年龄函数代码示例
时间:2022-06-29 07:43:04 编辑:袖梨 来源:一聚教程网
本篇文章小编给大家分享一下sql通过日期判断年龄函数代码示例,文章代码介绍的很详细,小编觉得挺不错的,现在分享给大家供大家参考,有需要的小伙伴们可以来看看。
定义函数:
CREATE FUNCTION [dbo].[GetAge]
(
@BirthDay nvarchar(20) --生日
)
RETURNS varchar(20)
AS
BEGIN
if(@BirthDay is NUlL or @BirthDay='')
return '';
-- Declare the return variable here
DECLARE @age varchar(20)
DECLARE @years int
DECLARE @months int
DECLARE @days int
-- Add the T-SQL statements to compute the return value here
set @age = ''
set @years = year(GETDATE()) - year(@birthday)
set @months = month(GETDATE()) - month(@birthday)
if day(@birthday)<=day(GETDATE())
set @days = day(GETDATE()) - day(@birthday)
else
begin
set @months = @months - 1
if MONTH(@birthday) in (1,3,5,7,8,10,12)
set @days = 31-day(@birthday)+day(GETDATE())
else if MONTH(@birthday) in (4,6,9,11)
set @days = 30-day(@birthday)+day(GETDATE())
else if MONTH(@birthday) = 2
if (year(@birthday)%4 = 0 and year(@birthday)%100 <> 0) or year(@birthday)%400 = 0
set @days = 29-day(@birthday)+day(GETDATE())
else
set @days = 28-day(@birthday)+day(GETDATE())
end
if @months < 0
begin
set @years = @years - 1
set @months = @months + 12
end
if @years = 0 and @months = 0
begin
return convert(varchar,@days+1) + '天'
end
if @years > 0
set @age = cast(@years as varchar(5)) + '岁'
if @years < 3 and @months > 0 and @years>-1
begin
set @age = @age + cast(@months as varchar(5)) + '月'
end
if @years<0
set @age=''
RETURN @age
END
使用函数:
相关文章
- 神迹觉醒后裔有哪些技能 11-05
- 崩坏星穹铁道风堇复刻要抽吗-3.7风堇复刻抽取建议 11-05
- 碧蓝航线鳄怎么获得 11-05
- 银与绯赛莉妮娅角色如何 11-05
- 蔚蓝档案绿女仆有什么技能 11-05
- 你已经猜到结局了吗攻略大全-你已经猜到结局了吗关卡攻略 11-05
