Click here to Skip to main content
15,881,248 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
Do I have to insert values in junction table?
because I got a little bit confusion concerning that issue

What I have tried:

..
Do I have to insert values in junction table?
because I got a little bit confusion concerning that issue
Posted
Updated 13-Dec-22 6:29am

1 solution

If you mean that you have a table which relates to two other tables:
Products:
ID
Description
InStock
Customers:
ID
Name
Address
Orders:
ID 
CustID
ProdID
And "Orders" is your "Junction table" then yes, you do have to insert values to that yourself - the system doesn't have any idea what customers bought what product!

If that isn't what you mean, you are going to have to be a lot more specific in your question!
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900