cancer2006
Programmer
Using Access 97. Need to select data based on the following condition.
Select * From tempTable
Where (tempTable.date >= '01/01/2007') or (tempTable.date is null)
data type of tempTable.date is Text.
When I use the following code
Select * From tempTable
Where tempTable.date >= '01/01/2007'
It gives me all the records even if the date is < 01/01/2007 with out NULL records.
I will appreciate your efforts. Thanks.
Select * From tempTable
Where (tempTable.date >= '01/01/2007') or (tempTable.date is null)
data type of tempTable.date is Text.
When I use the following code
Select * From tempTable
Where tempTable.date >= '01/01/2007'
It gives me all the records even if the date is < 01/01/2007 with out NULL records.
I will appreciate your efforts. Thanks.