Hi,
Simplifying my problem its this,
I have inserted a record in to a 'table1' which has fields 'name' (CHAR(10), Primary Key) and 'date1' (DATE, Null)
The insert statement was
INSERT INTO table1 VALUES ('bill', null);
This shows, as you'd expect
name | date1
------------------------------
bill |
MY PROBLEM:
The following select statement returns nothing
SELECT name FROM table1 WHERE date1 = null;
Shouldn't I get a result? date1 has value null.
How can SELECT this record from a null date??
Thanks
LasLo
Simplifying my problem its this,
I have inserted a record in to a 'table1' which has fields 'name' (CHAR(10), Primary Key) and 'date1' (DATE, Null)
The insert statement was
INSERT INTO table1 VALUES ('bill', null);
This shows, as you'd expect
name | date1
------------------------------
bill |
MY PROBLEM:
The following select statement returns nothing
SELECT name FROM table1 WHERE date1 = null;
Shouldn't I get a result? date1 has value null.
How can SELECT this record from a null date??
Thanks
LasLo