I'me looking for a function that would receive a time and would round it to the next/previous hour / half-hour / quarter / minute.
|
|
Try this function CREATE function [dbo].[RoundTime] (@Time datetime, @RoundTo float) returns datetime as begin declare @RoundedTime smalldatetime declare @Multiplier float set @Multiplier= 24.0/@RoundTo set @RoundedTime= ROUND(cast(cast(convert(varchar,@Time,114) as datetime) as float) * @Multiplier,0)/@Multiplier return @RoundedTime end select dbo.roundtime('13:15',0.5) The 1st param is the time to be rounded and the 2nd will be base on your list (0.5-half hour, 1-one hour, ...) |
||
