I've written a query to try and update the MAINTAINANCESCHEDULE field (datetime, null) with the date from the EVENTID field (datetime, null) + 180 day's. I'm just at the beginning of using SQL and a bit stuck on how to solve the problem. The error I get is: Msg 102, Level 15, State 1, Line 1 Incorrect syntax near '<'.
my query looks lik this at the moment can someone help me out here?
UPDATE UDStay SET "MAINTAINANCESCHEDULE" = "EVENTARRIVED" < CONVERT (DATETIME(8), DATEADD (DAY, +180, CURRENT_TIMESTAMP), 112) + '0000')
WHERE CONTRACT = 'sde' AND "EVENTDEPARTED" IS NULL AND "EVENTCURRENT" = 'ARRIVED'
GO