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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top