G
Guest
I have two queries that I want to make into one query so that the information
can be pulled into a form. I have read some information on the Union query
and was wondering if this would work for what I need to do. Here are the two
queries that I have and that I need to try to merge into one query. Can
someone please advise what I need to do from here?
SELECT [Correspondence Volumes].[DATE RECEIVED], [Correspondence
Volumes].[QUEUE ID], [Correspondence Queues].[QUEUE NAME], [Correspondence
Volumes].[VOLUME RECEIVED]
FROM [Correspondence Volumes] INNER JOIN [Correspondence Queues] ON
[Correspondence Volumes].[QUEUE ID] = [Correspondence Queues].ID
WHERE ((([Correspondence Volumes].[DATE RECEIVED])=[Enter Date]));
SELECT VOLUMES.[DATE RECEIVED], VOLUMES.[QUEUE ID], QUEUES.[QUEUE NAME],
VOLUMES.[VOLUME RECEIVED]
FROM QUEUES INNER JOIN VOLUMES ON QUEUES.ID = VOLUMES.[QUEUE ID]
WHERE (((VOLUMES.[DATE RECEIVED])=[Enter Date Received]));
can be pulled into a form. I have read some information on the Union query
and was wondering if this would work for what I need to do. Here are the two
queries that I have and that I need to try to merge into one query. Can
someone please advise what I need to do from here?
SELECT [Correspondence Volumes].[DATE RECEIVED], [Correspondence
Volumes].[QUEUE ID], [Correspondence Queues].[QUEUE NAME], [Correspondence
Volumes].[VOLUME RECEIVED]
FROM [Correspondence Volumes] INNER JOIN [Correspondence Queues] ON
[Correspondence Volumes].[QUEUE ID] = [Correspondence Queues].ID
WHERE ((([Correspondence Volumes].[DATE RECEIVED])=[Enter Date]));
SELECT VOLUMES.[DATE RECEIVED], VOLUMES.[QUEUE ID], QUEUES.[QUEUE NAME],
VOLUMES.[VOLUME RECEIVED]
FROM QUEUES INNER JOIN VOLUMES ON QUEUES.ID = VOLUMES.[QUEUE ID]
WHERE (((VOLUMES.[DATE RECEIVED])=[Enter Date Received]));