Query add where

Maybe this has already been discussed, but I don't know how to do it.
In the conditions of a query, I should add
WHERE (field1 + field2) > 1

I think you need to use a set value step to your sc action where say total = Field1 = Field 2

And then in your query conditions you can WHERE total > 1

1 Like

You can't do this in the query builder, in order to have such a condition you need to use a custom query.
It will look something like:

SELECT *
FROM XXX
WHERE columnA + columnB > 1;
1 Like

OK thank you