Skip to content
Advertisement

Append time from table to getdate() while using case

I am trying to append time from a column to a date and use in a case statment

getdate() at time zone 'Central Standard Time'

this is what i’ve tried so far

datatype of endtime column is nvarchar and the format of the time is 21:00

and this is the error that i am getting

Incorrect syntax near the keyword 'from'

I have tried using this solution as well https://stackoverflow.com/a/700647 but still the same error. But when i do

select CAST(CAST(getdate() at time zone 'Central Standard Time' AS DATE) AS DATETIME) + endtime from tablename where id = 'uniqueid'

i get a proper response of 2020-01-07 07:00:00.000

and this seems to work fine as well

returns 1

but

returns Incorrect syntax near the keyword 'where'

I am not sure if i am doing something wrong or is it a limitation.

Advertisement

Answer

The big issue is that you are trying to use a subquery without using a subquery, which is what the syntax error is all about. Try this instead (expanded out for clarity)

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement