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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

query for a not null value

Status
Not open for further replies.

sbbrown9924

Technical User
Mar 7, 2003
80
US
How would you write a query to capture all records that have a field value that is not null? The field is a number. Thanks.


SELECT * From Table where ---> Field Is Not Null <---
 



WHERE Not((Name of Field) Is Null))

Shouldn't make a difference if it is a date field or text field, if the value truly is null.
 
what is up with all the nested parens, people

access sql works fine without them

WHERE Field IS NOT NULL


leslie, yes it does

r937.com | rudy.ca
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top