bostonfrog
Programmer
Is there any "formula-like" way of resolving the issue of a many-to-many table relationship? If, for example, I had two tables, 1 called PASSENGERS and another called FLIGHTS, I might be in quandary because a passenger could have many flights, and flights could have many passengers. Employing database rules, I would include the PK from each table to form a new "bridge" table consisting of a CPK using the primary key from both the PASSENGERS and FLIGHTS tables, such as possibly PASSENGER_TICKETS (CPK: FlightID/PassengerID). But is simply thinking about what 2 tables might have in common the only way to create the new bridge table to maintain the 1-to-many relationship, or is there some way of analyzing the field names in both tables to help one in defining what that new one should be?
-- Michel
-- Michel