Quering 2 unrelated (apparently) DBs

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a DB of parts requiring machining and a DB of machine shops that can
do at least one of the machining operations. I want to select a part, then
the machining operation(s) I need to outsource, and have the query return all
those machine shops that can do the operation(s). The DBs I have created have
no common fields (all the machining operations are Yes/No). How do I build
the query?

Below are the DB's fields.

Parts:

PartNumber
UniqueIdentifier
PartName
Milling
Turning
Boring
Welding
Operation1
Operation2
Plating

Outsourcers:

SupplierUniqueID
SupplierID
SupplierName
Milling
Turning
Boring
Welding
Operation1
Operation2
Plating
Rating
Notes

Thanks.

Phil
 
Phil

It sounds like your tables (DBs are the complete database, tables hold
rows/columns of data) are set up like a spreadsheet, with one column per
operation. This is undesirable in a relational database product like
Access, and will cause you and Access to have to work harder to do simple
things.

I'll recommend that you look into normalization, and modify the structure of
these two tables.

Regards

Jeff Boyce
Microsoft Office/Access MVP
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top