I am trying to select specific values from a column in JSL, but there is an issue. The column name is:
Sum(ow_blah)
And I would like to: select where(Sum(ow_blah) == 0)
Unfortunately, the combination of the keyword Sum
and parentheses have led to significant problems. And Aliasing is not allowed in select
statements. How can I use the Sum
function within a where
clause?