Hi,
I have added a HAVING onto my code as I need to only bring back values that are >0
This is my HAVING below
HAVING sum(S_Val) > '0'and sum(T_Val) > '0'
Both columns have 0 values in them.
The issue I have is when I use the HAVING as above, 0 records return. If I use a HAVING with one criteria, I get results returned. Any idea why it would return no data on my current logic please, have I missed something off the HAVING?