T
tryit
Let's say I have a table that has five fields, a, b, c, d, and e
For any given values of a,b,c (say a=1,b=2,c=3), I'd like to check
whether any records in the table already have those values for those
fields.
For example:
If my table looks like
a,b,c,d,e
1,2,3,4,5
2,3,4,5,6
3,4,5,6,7
4,5,6,7,8
etc.
Then, the first record would be a "match" with a=1,b=2,c=3.
How do I test for that?
TIA,
Tom
For any given values of a,b,c (say a=1,b=2,c=3), I'd like to check
whether any records in the table already have those values for those
fields.
For example:
If my table looks like
a,b,c,d,e
1,2,3,4,5
2,3,4,5,6
3,4,5,6,7
4,5,6,7,8
etc.
Then, the first record would be a "match" with a=1,b=2,c=3.
How do I test for that?
TIA,
Tom