I have a database project with 18+ tables in it. I am trying to setup the relationships, but am not sure about the best (appropriate?) structure. I have a table (IDInfo) with a field called WPSNo. Ten other tables also have this field. I am not sure whether to create the relationship One-to-many from the IDInfo table to the others, or one-to-one-to-one (cascading through the tables sequentially).
Functionally, I will need to pull a record based on WPSNo from each table for display as an on-screen report. (I am writing to them individually from a multi-tabbed form with seperate SQLs.)
Which is the correct (most efficient) way to relate these tables?