Hi, I am not a programmer so thank you for any help you can give me. In my project I have 9 tables all containing 11 common (same) fields. The only reason they are seperate tables is because these people are in different departments and they get added/deleted/modified by clicking on a command button on the switchboard to open their department form. Also, a report can be generated for each department seperately.
*************
HERE IS MY PROBLEM:
*************
I need to be able to view all of the tables together. SINCE all the fields are the same I didn't think it would be such a huge problem. I have created this query titled "Query_tech" to view it. I have created a similar query for each table in my project:
**************
SELECT [Last Name], [First Name], [Middle Init], [SPT], [SSN], [COB], [POB1], [POB2], [PAD], [Category], [Comments]
FROM [Tech Personnel];
**************
This works great for each seperate table, but I can't join the other to view as "ALL PERSONNEL"
I have tried joining all of the individual queries by seperating by the word UNION -like this:
**********************
Query_tech UNION Query_mechs UNION Query_admin UNION Query_parts
**********************
but it did'nt work.
CAN SOMEONE PLEASE HELP ME JOIN ALL OF THE TABLES SO I CAN VIEW AS A WHOLE INSTEAD OF SEPERATELY? AFTER I DO THIS, I CAN GENERATE A REPORT FOR ALL PERSONNEL.
Thank you so much for your help, I have spent many hours working on this problem.
*************
HERE IS MY PROBLEM:
*************
I need to be able to view all of the tables together. SINCE all the fields are the same I didn't think it would be such a huge problem. I have created this query titled "Query_tech" to view it. I have created a similar query for each table in my project:
**************
SELECT [Last Name], [First Name], [Middle Init], [SPT], [SSN], [COB], [POB1], [POB2], [PAD], [Category], [Comments]
FROM [Tech Personnel];
**************
This works great for each seperate table, but I can't join the other to view as "ALL PERSONNEL"
I have tried joining all of the individual queries by seperating by the word UNION -like this:
**********************
Query_tech UNION Query_mechs UNION Query_admin UNION Query_parts
**********************
but it did'nt work.
CAN SOMEONE PLEASE HELP ME JOIN ALL OF THE TABLES SO I CAN VIEW AS A WHOLE INSTEAD OF SEPERATELY? AFTER I DO THIS, I CAN GENERATE A REPORT FOR ALL PERSONNEL.
Thank you so much for your help, I have spent many hours working on this problem.