时间:2021-07-01 10:21:17 帮助过:20人阅读
declare @app_change_web_start nvarchar(255),@app_change_web_end nvarchar(255),@now nvarchar(255)
set @app_change_web_start=‘05:55:00‘;
set @app_change_web_end=‘06:02:00‘;
print @app_change_web_start;
print @app_change_web_end;
declare @date nvarchar(255)
select @date=CONVERT(varchar(100), GETDATE(), 23);
print @date;
set @now =CONVERT(varchar(100), GETDATE(), 24)
print @now;
declare @startCha int,@endCha int
set @startCha = DATEDIFF(ms,@app_change_web_start,@now)
set @endCha=DATEDIFF(ms,@now,@app_change_web_end)
print @startCha;
print @endCha;
--[dbo].[APP_changeCreateMethod_job]
if @startCha>0 and @endCha>0 --在区间内
begin
end
else
begin
end
sqlsever 判断时间区间
标签:sqlsever 时间