When I run the following query:
SELECT username FROM minsk1
UNION
SELECT username FROM belarus1
Although it should not return repeated values according to the documentation (only DISTINCT ones), strangely enough, it returns dublicates, I get a query result that looks, for example, like this:
ann
john
mike
winston
zebra
ann
lucy
tom
where, for example, "ann" is repeated (from minsk1 and belarus1 tables). What's wrong with my query or with my MS Access?
Big thanks in advance!
regards,
rydel n23
SELECT username FROM minsk1
UNION
SELECT username FROM belarus1
Although it should not return repeated values according to the documentation (only DISTINCT ones), strangely enough, it returns dublicates, I get a query result that looks, for example, like this:
ann
john
mike
winston
zebra
ann
lucy
tom
where, for example, "ann" is repeated (from minsk1 and belarus1 tables). What's wrong with my query or with my MS Access?
Big thanks in advance!
regards,
rydel n23