approximate values query

zhuanyi

Registered User.
Local time
Today, 06:39
Joined
Apr 24, 2007
Messages
66
hello,
I am just wondering whether there is any way I could define a query in such a way to include a record in Table A if field FA is approximately equal to field FB in Table B by no more than, say 12.

Thanks!

Regards,
Anyi
 
use a calculation

BETWEEN (tableB.FB -12) AND (tableB.FB+12)
 

Users who are viewing this thread

Back
Top Bottom