Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Not Null, Not Empty but it has nothing in it...

Status
Not open for further replies.

Guru2B

Programmer
May 24, 2000
77
GB
Hi,

I am trying to create a query that returns only records that have an email address.

The SQL looks like this..

SELECT * FROM
WHERE EMail <> null (or empty or whatever)

I've tried everything it seems (except of course the right thing) and cannot get it to work. Any ideas? I am using Access with VB and DAO

Thanks.
 

or..

SELECT * FROM
WHERE NOT (EMail Is Null)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top