Hello,
I am trying to use the quick report flag parameters to behave like a native between in IEE.
SELECT customer_id,Name
from customer_info
where creation_date like &[---B-]CUSTOMER_INFO.CREATION_DATE
Error:

When I add ‘’s around the parameters the quick report will save.
SELECT customer_id,Name
from customer_info
where creation_date like '&[---B-]CUSTOMER_INFO.CREATION_DATE'
but when I run it. I receive an SQL error

I have also tried this using between and = as comparators and non of them seem to work.
How can I achieve this action?
Thank you.