elly.khanlar
Registered User.
- Local time
- Today, 05:25
- Joined
- Oct 3, 2019
- Messages
- 23
Hi All,
I am trying to make a master list by joining two tables based on the "Source" and "material" field.
this two table that I am trying to join are the result of creating make table from union queries by writing following code:
qryTable123:
SELECT * FROM Table1
Union All
SELECT * FROM Table2
UNION ALL SELECT * FROM Table3;
qmktNewTable:
SELECT qryTable123.* INTO NewTable
FROM qryTable123;
Now, I am getting this error" Query must have at least one destination field" when I tried to join the two tables that are the result of make table from union queries. I check the design grid for the make table from union queries, and both have field in the design grid. Could you please help me solve this issue.
I am trying to make a master list by joining two tables based on the "Source" and "material" field.
this two table that I am trying to join are the result of creating make table from union queries by writing following code:
qryTable123:
SELECT * FROM Table1
Union All
SELECT * FROM Table2
UNION ALL SELECT * FROM Table3;
qmktNewTable:
SELECT qryTable123.* INTO NewTable
FROM qryTable123;
Now, I am getting this error" Query must have at least one destination field" when I tried to join the two tables that are the result of make table from union queries. I check the design grid for the make table from union queries, and both have field in the design grid. Could you please help me solve this issue.