Hi,
Say I have a table with 2 columns (item, quantity) and there are no duplicate rows. I need to duplicate a row according to the value that is in the quantity field... so if there is (table, 3) I need:

table, 3
table, 3
table, 3
...

is it possible to do this without manually inserting the row 3 times?

thanks.