Mbowe
Programmer
- Jan 6, 2006
- 35
Hello!
I need your help. I have field called 'country' which for US is blank. I want to select everything where country is not blank, not filtering.
Select Name.ID, Name.FirsName, Name.LastName, Name.Country
from tblMembers
where Name.Country<>'';
The code above does not filter, I also tried Name.Country Is Not Null.
I need your help. I have field called 'country' which for US is blank. I want to select everything where country is not blank, not filtering.
Select Name.ID, Name.FirsName, Name.LastName, Name.Country
from tblMembers
where Name.Country<>'';
The code above does not filter, I also tried Name.Country Is Not Null.