Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

calculating time range values

5 views
Skip to first unread message

raul

unread,
Jun 18, 2012, 10:31:25 AM6/18/12
to
can someone help me with this? I am trying to create a computed column by calculating time range but it gives me errors with all the numbers assigned in the 'between' assignment. It seems like the code structure is wrong BUT i cant figured it out. If I do a select with the convert assignment type come out in that format.


thanks for any help,

Raul Rego

jj...@hotmail.com


USE [njpies]
GO
ALTER TABLE [dbo].[aidsdata] ADD GROUP_TIME_SHIFT AS
CASE
WHEN convert(time(0), DATE_CALL, 108) between 07:00:00 and 14:59:59 then '1st Shift'
WHEN convert(time(0), DATE_CALL, 108) between 15:00:00 and 22:59:59 then '2nd Shift'
when convert(time(0), DATE_CALL, 108) between 23:00:00 and 06:59:59 then '3rd Shift'

end
PERSISTED
0 new messages