nikarc Posted September 9, 2003 Posted September 9, 2003 I was wondering if there was a standard term that most everyone uses for the following (or even if this is the most common way to handle the following): You need to create a relationship between two files where the match field in the master file needs to be the combination of two other fields in that master file. The match field in the related file is just one text field. For example: master::textfield1="foo" master::textfield2="bar" related::textfield1="foobar" I need a relationship (master::textfield1 + master::textfield2) --> related::textfield1. I almost always handle the above by creating a calculation field in the master file that is the concatenation of the two text fields. Thus: master::calcfield3=textfield1 & "." & textfield2 relationship master::calcfield3 --> related::textfield1 Is there a term for this sort of technique? I usually just call it a "join" but I'm not sure that's the correct term for that. Thanks in advance, Kyle
Kurt Knippel Posted September 9, 2003 Posted September 9, 2003 Yes it is just a join. The fields that you are connecting are generally called "compound keys".
Recommended Posts
This topic is 7803 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now