I'm having a problem with a union query. I have two simple select queries that I'm joining with a Union query. When I run each individual query I get all the data. For example 204 records from the qryEarnings query and 100 records from the qryDeductions. But when I run my union query I only get 300 records.
Am I missing something?
SELECT *
FROM qryDeductions
UNION SELECT *
FROM qryEarnings;
Thanks in advance
Am I missing something?
SELECT *
FROM qryDeductions
UNION SELECT *
FROM qryEarnings;
Thanks in advance