robmkimmons
Technical User
In creating a glossary I have tblTerm. A term might have one or more aliases that are also terms within the same table.
For example:
Term X = Aliases Y & Z
Term Y = Aliases X & Z
Term Z = Aliases X & Y
Term A = No Alias
Term B = Alias C
Term C = Alias B
My current table structure:
tblTerm
TermID (autonum)
TermName (txt)
I am confused as to how i should proceed. Should I create a relationship between tblTerm and itself? ..if so, how? Or should I create a tblAlias?
Thanks!
~Rob
If we expect the unexpected, does that make the unexpected... well, expected?
For example:
Term X = Aliases Y & Z
Term Y = Aliases X & Z
Term Z = Aliases X & Y
Term A = No Alias
Term B = Alias C
Term C = Alias B
My current table structure:
tblTerm
TermID (autonum)
TermName (txt)
I am confused as to how i should proceed. Should I create a relationship between tblTerm and itself? ..if so, how? Or should I create a tblAlias?
Thanks!
~Rob
If we expect the unexpected, does that make the unexpected... well, expected?