in reply to Re: Most efficient record selection method?
in thread Most efficient record selection method?
Variants, = mixture of values contained in each field.
Sample records = Live records containing these values
I don't care about the combination, but we do need to have the minimum number of records so:
[A1,B1],[A1,B2],[A2,B1],[A2,B2] (variants over 2 fields)
could be resolved in 3 records as you have said:
record 1 - contains [A1,B1] record 2 - contains [A1,B2] record 3 - contains [A2,B1]
HOWEVER, if there are 2 records that contain:
record 1 - [A1,B1] record 2 - [A2,B2]
Then these need to be identified and used in preference to the first combination as that will be the minimum number of records I need to represent all the variants in each of the fields.
This gets more complicated as the number of fields and files being interrogated increases
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Most efficient record selection method?
by ELISHEVA (Prior) on Feb 13, 2009 at 13:48 UTC |