Date queries

G

Guest

I want to create a query that will only return the results if the main date
(date1) does not either equal date2 and date3.

Any suggestions on how to do this?
 
G

Guest

In SQL

Select * From TableName
Where Date1 <> Date2 And Date1 <> Date3

Or, in the query in the criteria section, write Under Date2 and Date3

<> Date1
 

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

Top