I need to be able to look up the possible "nicknames" for a given first name, but can't quite figure out the right way to store them.
For example, let's say that all of the following are forms of the same name:
Elizabeth, Eliza, Bessie, Beth, Betsy, Betty, Libby, Liza, Lisa, Liz, Lizzie
If the user types in "Beth", I would like to be able to retrieve all of the other nicknames in this "set".
Using 20 (or more!) columns called "Nickname1, Nickname2,..." seems like a really bad idea.
On the other hand, none of these will inherently be a master record of the others, so there isn't a clear way on how to make it relational/hierarchical.
I was thinking that adding a "GroupID" column might work, and then assign all of the names in a "set" to the same GroupID, but the GroupID field would have no other meaning other than grouping, and getting a set of nicknames will always require a nested query like:
SELECT Name FROM Nicknames WHERE GroupID = (SELECT GroupID FROM Nicknames WHERE Name = 'Beth')
Not to mention that both columns in the table will need to have their own separate indexes for this to work efficiently.
Am I missing something? This seems like it should be easy, but I can't get my head around it today.
(I am using SQL Server, but the question is fairly generic so I didn't tag it as such).