SQL 获取两个时间小时部分之差 create function gethours(@stime datetime,@etime datetime)
returns int
as
begin
declare @hstime nvarchar(30)
declare @hetime nvarchar(30)
declare @result int
select @hstime=Ltrim(datepart(hh,@stime))
select @hetime=Ltrim(datepart(hh,@etime))
if (@hstime<8 and @hetime<17 and @hetime>7)
begin
set @result=@hetime-8
end
else if (@hstime<8 and @hetime>17)
begin
set @result=8
end
else if (@hstime<8 and @hetime<8)
begin
set @result=0
end
else if (@hstime>=17 and @hetime>=17)
begin
set @result=0
end
else if (@hstime>=17 and @hetime<17 and @hetime>=8)
begin
set @result=@hetime-8
end
else if (@hstime>=17 and @hetime<8)
begin
set @result=0
end
else if (@hstime>=8 and @hstime<17 and @hetime>=17)
begin
set @result=17-@hstime
end
else if (@hstime>=8 and @hstime<=17 and @hetime<8)
begin
set @result=17-@hstime
end
else if (@hstime>@hetime AND @hetime>=8 AND @hstime <17)
begin
set @result=cast(@hetime as int)-cast(@hstime as int)+9
end
else if (@hstime>@hetime AND @hetime>=8 AND @hstime >17)
begin
set @result=cast(@hetime as int)-8
end
else
begin
set @result=(cast(@hetime as int)- cast(@hstime as int))
end
return @result
end
我执行这个SQL的时候,为什么只是返回else中的结果,我在满足(@hstime>@hetime AND @hetime>=8 AND @hstime <17