I am using the report writing functionality within an application to generate barcode product labels.
The report writing system allows me to use a MySQL SELECT statement to get the information I need from our database and present it to a Jasper Reports JRXML file that formats the report.
This works fine if I want to produce one barcode label for each product returned from the database by my SELECT statement. However I want to produce 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 in which I can get a MySQL SELECT statement to return 50 identical results for each record it finds in the products table?
Thanks for any help.