i am using one table called sales by this query I want to show all entire table but I am not getting how to use parameter in this
SELECT a.City, b . * FROM sales a LEFT JOIN sales b ON a.City = b.City
or
SELECT * FROM sales WHERE City = ANY(
SELECT DISTINCT City FROM sales);
2 Answers:
Posted on July 13, 2021 at 4:19pm
If you want to know the basic way to use parameters in Studio's SQL, the following wiki may help you understand.
https://community.jaspersoft.com/wiki/using-report-parameters-jaspersoft...
You will need to see the manual for more detailed information.
https://community.jaspersoft.com/documentation/tibco-jaspersoft-studio-u...
I hope this is helpful.