Here are my access tables:
PART TABLE
{
part_id
manufacturer
part_number
part_name
}
PLANT TABLE
{
plant_id
plant_name
plant_address
plant_phone
}
INVENTORY TABLE
{
inventory_id
part_id
plant_id
quantity
}
I want to run a query that will display all of the parts that exist at mutiple plants. If it only exist at 1 plant I do not want it in the query at all. I need the following information in the query:
manufacturer,part_number,part_name,plant_name,quantity
example:
GE | 1234 | tube | Plant Jones | 24
GE | 1234 | tube | Plant Kline | 31
GE | 1234 | tube | Plant Krist | 6
RCA| 3232 | pipe | Plant Knols | 92
RCA| 3232 | pipe | Plant Kline | 4
Any help with this will be greatly appreciated. This one really has me stumped!
Dave
PART TABLE
{
part_id
manufacturer
part_number
part_name
}
PLANT TABLE
{
plant_id
plant_name
plant_address
plant_phone
}
INVENTORY TABLE
{
inventory_id
part_id
plant_id
quantity
}
I want to run a query that will display all of the parts that exist at mutiple plants. If it only exist at 1 plant I do not want it in the query at all. I need the following information in the query:
manufacturer,part_number,part_name,plant_name,quantity
example:
GE | 1234 | tube | Plant Jones | 24
GE | 1234 | tube | Plant Kline | 31
GE | 1234 | tube | Plant Krist | 6
RCA| 3232 | pipe | Plant Knols | 92
RCA| 3232 | pipe | Plant Kline | 4
Any help with this will be greatly appreciated. This one really has me stumped!
Dave