Declare @Stopwatch datetime Set @Stopwatch=GetDate()
Do something here
Print DateDiff(ms, @Stopwatch, GetDate()); -- display the elapsed time in milliseconds Set @Stopwatch = GetDate() -- reset the stop watch
Post a Comment
No comments:
Post a Comment