We have tables pizza and orders
SQL data modeler generates relational model like this:
We forgot, that the customer can buy 2 or more of the same pizza. We found that we can add column pieces to table pizza_orders or we can create special primary key for table Pizza_Orders (Pizza_Orders_Id). Which solution is better? Or is there other better solution?