Does anyone have any ideas about what is wrong with the following SQL statement. I am attempting to create a query but it keeps bombing out:
select case when Column = 1 then 0 else 1 end
from Table
Error:
Syntax error (missing operator) in query expression 'case when Column = 1 then 0 else 1 end'.
Swi
select case when Column = 1 then 0 else 1 end
from Table
Error:
Syntax error (missing operator) in query expression 'case when Column = 1 then 0 else 1 end'.
Swi