all out of ideas so looking for help. So I have two tables with a single column with ID's 1-29, each ID represents a coworker. I have a 3rd table where I have already created every combination of records from the first 2 tables.
The part that I am struggling with is that I need to order my 3rd tables as follows, say person 1 calls person 2, the ID in table 3 will look like this: '1-2', now I need to make the next record start with 2 and have person 2 call someone who is not person 1 (who has already been called) and have person 1 not be called again until the remaining 28 people are already called as to ensure that everyone gets called at least once before looking through to other combos.
It's a bit hard to explain so I am willing to elaborate if needed.
For those wondering, the purpose of this exercise to to create a bit of "call train" to have everyone check up on everyone else. Thanks in advance!
28! ~= 10^29
combinations. This would likely take more storage than the total storage of all computers in the world. – Kevin Wang