I've been building a database from a series of databases to our groups ownership information in one location. I managed to combine the names of the owners into one table that I want to use as a master.
The problem is that the other tables have need for name and ID information more than once within each table (we'll call it "items" here). I've tried all sorts of tricks including using several different queries to develop a way to a) create a drop down list so users can select a pre-existing name before entering a new one, and b) populate that information in each ID field (which can have different ID #)is stored in "items" so it can be referred back to the Names table when needed.
Needless to say, without much success.
So is there a niffy trick of linking a master information table to multiple fields within another table?
Example:
Names Table:
FName LName ID# Department
Items Table:
FName LName ID#
FName2 LName2 ID#2
FName3 LName3 ID#3
Department State Misc Updated etc...
Thanks
PS: Has anyone run into TRIM() RTRIM () etc actually not trimming when used within a SQL query?
The problem is that the other tables have need for name and ID information more than once within each table (we'll call it "items" here). I've tried all sorts of tricks including using several different queries to develop a way to a) create a drop down list so users can select a pre-existing name before entering a new one, and b) populate that information in each ID field (which can have different ID #)is stored in "items" so it can be referred back to the Names table when needed.
Needless to say, without much success.
So is there a niffy trick of linking a master information table to multiple fields within another table?
Example:
Names Table:
FName LName ID# Department
Items Table:
FName LName ID#
FName2 LName2 ID#2
FName3 LName3 ID#3
Department State Misc Updated etc...
Thanks
PS: Has anyone run into TRIM() RTRIM () etc actually not trimming when used within a SQL query?