Error executing the sql macro (wrong number of arguments (2 for 3))
I am running the following query:
select i.id as 'ResolvedtoInProgress',i.Subject from journal_details jd,journals j ,issues i where jd.journal_id = j.id and j.journalized_id = i.id and (jd.old_value = 3 and jd.value = 2) LIMIT 0,5000;
Why am I getting the following error:
Error executing the sql macro (wrong number of arguments (2 for 3))
I am running the following query: select i.id as 'ResolvedtoInProgress',i.Subject from journal_details jd,journals j ,issues i where jd.journal_id = j.id and j.journalized_id = i.id and (jd.old_value = 3 and jd.value = 2) LIMIT 0,5000;