I have two related tables, the relationship is one-to-many.
Tbl.distributor: distributor_id, distributor_name, city, phone, email_address
Tbl.order: order_id, distributor_id, order_date, ship_method, ship_date, po_number
What I don’t understand is the following: After the distributor information has been inserted into the tbl.distributor how does the distributor_id end up in the order table as well?
--grx21
Tbl.distributor: distributor_id, distributor_name, city, phone, email_address
Tbl.order: order_id, distributor_id, order_date, ship_method, ship_date, po_number
What I don’t understand is the following: After the distributor information has been inserted into the tbl.distributor how does the distributor_id end up in the order table as well?
--grx21