Hello~
I created two tables, containing No, Day, ProjectName and Site. The contents of ProjectName come from another table, called "Project".
Then, I combined this two tables by fucntion "UNION ALL" in query.
But, the result shows No but not ProjectName in ProjectName field. How can it show ProjectName instead of No in the result of query?
Here is my test file: https://reurl.cc/px5WZx
Thanks in advance!
I created two tables, containing No, Day, ProjectName and Site. The contents of ProjectName come from another table, called "Project".
Then, I combined this two tables by fucntion "UNION ALL" in query.
Code:
SELECT Table_1.[Day], Table_1.[ProjectName], Table_1.[Site], Table_1.[No]
FROM Table_1
UNION ALL
SELECT Table_2.[Day], Table_2.[ProjectName], Table_2.[Site], Table_2.[No]
FROM Table_2
ORDER BY Day;
Here is my test file: https://reurl.cc/px5WZx
Thanks in advance!