PDA

View Full Version : Searching for NULL


admin
05-30-2003, 01:30 PM
When searching for NULL fields you cannot use "=". Instead, you use either "IS" or "IS NOT"...

SQL = "Select * From Customers Where Zip IS NULL"

Or...

SQL = "Select * From Customers Where Zip IS NOT NULL"