Hi there,
I got the above error trying to execute the following:
SELECT ...
.
.
CASE WHEN x = 100
THEN 0
ELSE CAST(y * x AS BIGINT)
END AS new_x
.
.
.
x is INT, so I have chosen the BIGINT for y*x, but still got the same error.
Thanks in advance,
So