I have three tables. The first table contains many fields of which one is a memo field. The memo field contents is split into individual words (to be used later as Keywords). These words are put into Table 2, and Table 3 logs the record numbers where the words are in.
This all works okay. However there is a check done to prevent duplicate words being stored in table 2. This is where my problem is because I still have to log the records record number in table 3 but because table 2 is bypassed I don't have a foreign key for table 3 to enable data entry in the table.
In a bit of a hole?
Table 1 PK1
Table 2 FK1 = PK1
PK2
Table 3 FK2 = PK2
PK3
Hope this makes sense/clear. Cannot insert picture
Thanks
This all works okay. However there is a check done to prevent duplicate words being stored in table 2. This is where my problem is because I still have to log the records record number in table 3 but because table 2 is bypassed I don't have a foreign key for table 3 to enable data entry in the table.
In a bit of a hole?
Table 1 PK1
Table 2 FK1 = PK1
PK2
Table 3 FK2 = PK2
PK3
Hope this makes sense/clear. Cannot insert picture
Thanks