S02035

Error Code

S02035

Error Message

The where condition must be a logical expression. RefId:S02035

Probable Causes

The conditions in the WHERE clause must be expressions that return boolean values.

For example, an error will occur if "1+1" is used, as it returns an integer.

t = table(1..3 as id)
select * from t where 1+1

Solutions

Check whether the conditions specified in the WHERE clause are valid.