I have a question about many-tomany relationship. I know that we have to create a junction table. But let say we have this scenario:
one table for Customers one table for Orders one table for products
One order can have many products and one product might be in many orders. Therefore we create a junction table. Could I just create a junction table between Customers and products and this junction would be a Order table to store the Orders?
Thanks