password99
Technical User
i have two different queries that return different columns except one. I need to combine the results from two queries into one row identified by common column.
e.g.
query 1 returns:
date charges
1/1/05 2000
query 2 returns:
date cash payment check payment
1/1/05 1000 500
how can i combine the above two to get:
date cash payment check payment charges
1/1/05 1000 500 2000
I thought of joining the two queries with date but One query may not have any data for the date in other query.
In other words query 1 may not have a date that is in query 2 and vice-versa.
e.g.
query 1 returns:
date charges
1/1/05 2000
query 2 returns:
date cash payment check payment
1/1/05 1000 500
how can i combine the above two to get:
date cash payment check payment charges
1/1/05 1000 500 2000
I thought of joining the two queries with date but One query may not have any data for the date in other query.
In other words query 1 may not have a date that is in query 2 and vice-versa.