Ok I am not sure how to create a parameter as part of the query.
This is my sql statement:
select name,
count(distinct label) CDS,
count(issn) ISSUES
from issue_tracker
where TASK_END is not null
and NAME is not null
and LABEL != 'NONE'
group by name
How do I create the parameter part in my query? I want parameters that ask for a start date and end date. Basically the user is determining a reporting time. So I would like the report numbers to be based on task_end >= Start Date and task_end <= End Date.