vote up 2 vote down star
1

I'me looking for a function that would receive a time and would round it to the next/previous hour / half-hour / quarter / minute.

flag

73% accept rate

1 Answer

vote up 4 vote down check

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, ...)

link|flag
If you use 121 in place of 113 it will get the datepart correct also – vzczc Oct 30 '08 at 11:54
Sorry, 121 in place of 114 – vzczc Oct 30 '08 at 11:55

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.