Hi All,
Suppose I have this query in a report:
Select count(emp_class)
from employees
where emp_class = 1
group by emp_class
Is there a way to make it returning the value of 0 if it returns null?
I tried this: Select nvl(count(emp_class, 0) but it doesn't work!
Note: I'm using Oracle DB 10g, Reports 6i
Thank you