E
Eric G
I'm trying to figure out how I can restrict records that are being
returned in a query
The field in question (number) might have the following values:
Nov 9 9
Nov 10 4
Nov 11 3
Nov 12 4
Nov 13 9
Nov 14 5
There are a total of 9 possible values.
Would someone be able to tell me the SQL that would pull up the
earliest of the values, excluding 9, *unless* 9 is the only number in
those fields ?
So with the above example, return
Nov 10 4
And in the following example:
Nov 2 9
Nov 3 9
Nov 4 9
Nov 5 9
return
Nov 2 9
Thanks for your help! Eric
returned in a query
The field in question (number) might have the following values:
Nov 9 9
Nov 10 4
Nov 11 3
Nov 12 4
Nov 13 9
Nov 14 5
There are a total of 9 possible values.
Would someone be able to tell me the SQL that would pull up the
earliest of the values, excluding 9, *unless* 9 is the only number in
those fields ?
So with the above example, return
Nov 10 4
And in the following example:
Nov 2 9
Nov 3 9
Nov 4 9
Nov 5 9
return
Nov 2 9
Thanks for your help! Eric