G
Guest
Hi to all!
Maybe I've found a bug into Access 2000...
Can I configure the dbms to delete the null values from a result query
without using the WHERE clause? Or is it a characteristic of Access?
I made this query:
SELECT Country
FROM Tab
and the result was:
empty row
country1
contry2
....
I looked at the database and saw that a column named Country has 4 empty rows.
Then I found one interesting thing. I made another query:
SELECT Country
FROM Tab
WHERE Tab.anyColumn NOT IN ('someValue')
The result in this case was:
country1
country2
....
Please help me, i wanna know how works it.
Maybe I've found a bug into Access 2000...
Can I configure the dbms to delete the null values from a result query
without using the WHERE clause? Or is it a characteristic of Access?
I made this query:
SELECT Country
FROM Tab
and the result was:
empty row
country1
contry2
....
I looked at the database and saw that a column named Country has 4 empty rows.
Then I found one interesting thing. I made another query:
SELECT Country
FROM Tab
WHERE Tab.anyColumn NOT IN ('someValue')
The result in this case was:
country1
country2
....
Please help me, i wanna know how works it.