D
Dom
I have three tables one with parts required the second
with part satisfies and the third with part status
The second table has two columns
The first being the part the second being satisfies
I.e.
TABLE 1 (REQUIRED)
PART
Part A
Part B
Part C
Part D
Part E
Part F
TABLE 2 (SATISFIES)
PART SATISFIES
Part B Part A
Part C Part A
Part G Part F
Part G Part C
Part G Part D
Part Z Part G
TABLE 3 (STATUS)
PART
Part Z
Part E
What I need to be able to do is take out any parts that
are done or satisfies any parts is table1
The problem I have is where Part Z is done which clears
Part G which in turn Clears part F,C & D
The end result in table 1 should be only be Part B
required
I have a query that does the opposite of what I want i.e
there is another table called pre-requisite
Which adds parts but this seems to be a lot easier as it
just adds part until it find no more pre-req’s
Can anyone give me some advice on this?
Thanks
Dom
with part satisfies and the third with part status
The second table has two columns
The first being the part the second being satisfies
I.e.
TABLE 1 (REQUIRED)
PART
Part A
Part B
Part C
Part D
Part E
Part F
TABLE 2 (SATISFIES)
PART SATISFIES
Part B Part A
Part C Part A
Part G Part F
Part G Part C
Part G Part D
Part Z Part G
TABLE 3 (STATUS)
PART
Part Z
Part E
What I need to be able to do is take out any parts that
are done or satisfies any parts is table1
The problem I have is where Part Z is done which clears
Part G which in turn Clears part F,C & D
The end result in table 1 should be only be Part B
required
I have a query that does the opposite of what I want i.e
there is another table called pre-requisite
Which adds parts but this seems to be a lot easier as it
just adds part until it find no more pre-req’s
Can anyone give me some advice on this?
Thanks
Dom