View Full Version : Empty string in date/time datatype


lsy
04-23-2007, 11:47 PM
there is a end_date column record with date/time datatype, how could i query datat that showing the particular is empty.
i try end_date = NULL, no record is showing and end_date = ' ' , datatype mismatch... so which one should i write??

boblarson
04-23-2007, 11:53 PM
Use Is Null

For example:

SELECT [Work Request].[START DATE]
FROM [Work Request]
WHERE ((([Work Request].[START DATE]) Is Null));

lsy
04-24-2007, 12:13 AM
Use Is Null

For example:

SELECT [Work Request].[START DATE]
FROM [Work Request]
WHERE ((([Work Request].[START DATE]) Is Null));

is it "IS NULL" and "IS NOT NULL" same with " = NULL" and "<> NULL"?

Dennisk
04-24-2007, 02:04 AM
=null and <> null do not work.
for queries use ColumnName is null

for vba code use isNull(ColumnName)

to negate use the not operator
eg

Not IsNull(ColumnName)