sqlsever 判斷時間區間
阿新 • • 發佈:2017-11-21
sqlsever 時間
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 判斷時間區間