my only suggestion is: don't.
if a customer submits an order, requesting 8 products, then you should have
one record in an Orders table, to store the order; and 8 records in an
OrderDetails table, to store each product that was requested. this is a
standard parent/child table setup that follows data normalization rules.
hth