I use the reporting features in the application to create barcode product shortcuts.
The reporting system allows me to use the MySQL SELECT statement to get the information I need from our database and present it in a Jasper Reports JSXML file that formats the report.
This works fine if I want to create one barcode label for each product returned from the database using the SELECT statement. However, I want to create fifty copies of each product label.
Easy enough if I had access to the code, but all I can change is the SQL statement.
Can anyone suggest a way I can get the MySQL SELECT statement to return 50 identical results for every record that it finds in the product table?
Thanks for any help.
source
share