Query Criterion Question

OxDavis

Registered User.
Local time
Yesterday, 22:50
Joined
Jul 14, 2005
Messages
74
Ok, I made a query that returns a Case Manager, their associated cases, and 3 dates that relate to each of these cases. So its:

Case Manager-----Case Name----Date1-----Date2-----Date3

I only want records to appear that have a value in at least 1 of the 3 date fields. If they have no data in ANY of the date fields I want those records excluded. How do I build this?
 
WHERE (Date1 is not null OR Date2 is not null OR Date3 is not null)
 
Thanks again Fofa! My lack of knowledge about SQL syntax strikes again!
 
Thanks again Fofa! My lack of knowledge about SQL syntax strikes again!
 

Users who are viewing this thread

Back
Top Bottom