Leighton21
Technical User
Hi All,
Just wondering if this were possible I have a table which contains Information on Electrical Components and when it was assembled similar to the following.
ComponentCode, ComponentType, AssembledDate etc
First of all I needed to find the number of components assembled within a particular time frame so I
used a Select ComponenType, Count(ComponentCode) From Comp Where Assembeld date between XXX and XXX.
This seems to work fine however now I am supposed to try and cross correlate with a table that has information on shiftTeams which has a structre like
Date, DayShiftTeam, NightShiftTeam
So for Each Record above there will be a single date with a dayshift team (which work fom 8 to 5) and a NightShift (who work 5 to 2)
Is there any way with a query to find out how many components each team made in a prticular shift, assembled over a given time period.
Results like
Team Shift Component (Count of Components)
A D CompA 20
A N CompA 23
B D CompC
B
Just wondering if this were possible I have a table which contains Information on Electrical Components and when it was assembled similar to the following.
ComponentCode, ComponentType, AssembledDate etc
First of all I needed to find the number of components assembled within a particular time frame so I
used a Select ComponenType, Count(ComponentCode) From Comp Where Assembeld date between XXX and XXX.
This seems to work fine however now I am supposed to try and cross correlate with a table that has information on shiftTeams which has a structre like
Date, DayShiftTeam, NightShiftTeam
So for Each Record above there will be a single date with a dayshift team (which work fom 8 to 5) and a NightShift (who work 5 to 2)
Is there any way with a query to find out how many components each team made in a prticular shift, assembled over a given time period.
Results like
Team Shift Component (Count of Components)
A D CompA 20
A N CompA 23
B D CompC
B