I am looking for a way to use the IN keyword in JasperReport. My query looks like:
SELECT * FROM table_name WHERE CID IN (145,45, 452);
following that in jasper report I can setup this;
SELECT * FROM table_name WHERE CID IN ($P{MY_CIDS});
and from my Java I would send $P{MY_CIDS} as a String, so my query will look like
SELECT * FROM table_name WHERE CID IN ("145,45, 452");
My questions is how to transform in SQL "145,45, 452" to a valid query so it would take into consideration each value separately 145, 45, 452
All help is appreciated.