Hello,
I am having difficulties designing a database with data from table 1 referencing multiple data in table 2. For example:
Table 1 includes:
id Title
1 105MM
2 155MM
Table 2 includes:
id Country
1 BEL
2 CAN
3 FRA
4. ITA
How do I design both Tables in order to link Table 1 with multiple records in Table 2?.
For example when I select 105MM, I want to see all the records from Table 2 that pertains to 105MM. I am trying to avoid duplicating the coutrires in table 2 just to link to the id column in table 1.
Output Example:
105MM
- BEL
- CAN
- ITA
155MM
- BEL
- FRA
- ITA
Thanks,
Victor
I am having difficulties designing a database with data from table 1 referencing multiple data in table 2. For example:
Table 1 includes:
id Title
1 105MM
2 155MM
Table 2 includes:
id Country
1 BEL
2 CAN
3 FRA
4. ITA
How do I design both Tables in order to link Table 1 with multiple records in Table 2?.
For example when I select 105MM, I want to see all the records from Table 2 that pertains to 105MM. I am trying to avoid duplicating the coutrires in table 2 just to link to the id column in table 1.
Output Example:
105MM
- BEL
- CAN
- ITA
155MM
- BEL
- FRA
- ITA
Thanks,
Victor