query using criteria

  • Thread starter Thread starter Guest
  • Start date Start date
The same way that you would use one criteria. The only complexity might be
if you want to use ANDs or ORs in your criteria.
 
By listing each separately in the WHERE clause:

WHERE [Field1] = "Value1" And [Field2] = "Value2" And ....

etc.

Or, use Or for logic of accepting any of the choices. Or, use various
combinations with parentheses to get more complex logic results.
 
Back
Top