I have two tables:
Product
Columns: Product ID (PK), Product Name
Order
Columns: Order ID (PK), Order Name
I would like to store which Product Id for each order.
Is it better to create another table:
ProductOrder table:
Order ID (FK), Product ID(FK)
or add an additional column in the Order table:
Order ID (PK), Order Name, Product ID (FK)
Edit: Order can only contain one product.