Zydeceltico
Registered User.
- Local time
- Today, 12:19
- Joined
- Dec 5, 2017
- Messages
- 843
Hi All -
I have two tables (tblWeldAssembleInspection & tblMillInspect).
These tables reflection inspection data.
We manufacture products. Some products are made up of two distinct products welded together BUT the two distinct products that are welded together are also sold as their distinct selves meaning NOT ALL products go through weld/assembly. So we may produce PartA and PartB and weld them together to make PartC or we may just sell them as PartA or as Part B - and they do not have to sell together.
My reason for saying this is to forgo the DB design discussion that always ensues. I have the tables setup separately for each type of inspection even though at first glance it appears that they are related. They are only "kind of" related.
Both tables do have fields with similar names (e.g., JobNumber, Workstation, etc.). A main commonly named field is "OilCanning." This is a yes/no field in both tables. This field is the primary focus of my upcoming question.
It should also be noted however that tblWeldAssemblyInspection contains the field "AssemblyType" whereas tblMillInspect has a similar field but it is called "PartType."
50% of the fields in each table are not named the same and do not relate to each other.
We have an ongoing issue with a manufacturing phenomenon called oil canning that can happen at any stage of production (i.e., either during part production OR not until assembly production).
I want to be able to run a query that tells me of every instance of oil canning regardless of where it happened - either during part production or assembly production. Remember - not all parts become assembly but all assemblies are made of parts.
The basic current design of this database is that it is actually multiple, unrelated databases. One for mill production and another assembly production - - - even though many inspection instances share common fields (e.g., JobNumber, Task, Resource). May be I could have designed it differently but I struggled with that forever and have posted about it multiple times.
So ...... is there a way to run a query on the two tables in question with a "yes" criteria set for the "OilCanning" field that exists in both and return every record from both tables into some sort of dynamically created table? Not all fields from each table would be necessary to retrieve but there would be some fields needed to be retrieved from one or the other table do not exist in both tables.
Is something like this possible?
Thank you in advance?
Tim
I have two tables (tblWeldAssembleInspection & tblMillInspect).
These tables reflection inspection data.
We manufacture products. Some products are made up of two distinct products welded together BUT the two distinct products that are welded together are also sold as their distinct selves meaning NOT ALL products go through weld/assembly. So we may produce PartA and PartB and weld them together to make PartC or we may just sell them as PartA or as Part B - and they do not have to sell together.
My reason for saying this is to forgo the DB design discussion that always ensues. I have the tables setup separately for each type of inspection even though at first glance it appears that they are related. They are only "kind of" related.
Both tables do have fields with similar names (e.g., JobNumber, Workstation, etc.). A main commonly named field is "OilCanning." This is a yes/no field in both tables. This field is the primary focus of my upcoming question.
It should also be noted however that tblWeldAssemblyInspection contains the field "AssemblyType" whereas tblMillInspect has a similar field but it is called "PartType."
50% of the fields in each table are not named the same and do not relate to each other.
We have an ongoing issue with a manufacturing phenomenon called oil canning that can happen at any stage of production (i.e., either during part production OR not until assembly production).
I want to be able to run a query that tells me of every instance of oil canning regardless of where it happened - either during part production or assembly production. Remember - not all parts become assembly but all assemblies are made of parts.
The basic current design of this database is that it is actually multiple, unrelated databases. One for mill production and another assembly production - - - even though many inspection instances share common fields (e.g., JobNumber, Task, Resource). May be I could have designed it differently but I struggled with that forever and have posted about it multiple times.
So ...... is there a way to run a query on the two tables in question with a "yes" criteria set for the "OilCanning" field that exists in both and return every record from both tables into some sort of dynamically created table? Not all fields from each table would be necessary to retrieve but there would be some fields needed to be retrieved from one or the other table do not exist in both tables.
Is something like this possible?
Thank you in advance?
Tim