Hi. This seems simple, and yet I can think of no elegant way to accomplish this simple modeling. Basically, I have a set of numbers that together can make up a group. There could be a single number in the group, or many numbers in the group. A particular number may appear in multiple groups.
My system will present a set of numbers which I need to go through in order to determine which group is involved. I wanted to do something normalized where each of my numbers is in a record, and these number records relate to the group record or records that they fall in, but the logic doesn't seem to work.
All I can come up with instead is to create a single record for each group that has a column that concatenates all of its member numbers, perhaps separated by a special character, and then match on that.
Any better way to do this?
Many thanks!