Different field names, same data

C

charlesr

I have two tables: one, created from a monthly report that
is sent to us by the laboratory and uses the
field "medrecno."

My other table is the one we continually use and contains
the field "patient id"

I want to make a query using the two tables but I need it
to recognize the medrecno and patientid are same. Is
there a way to do this without renaming one of the two
fields?

Many thanks.

Charles
 
J

John Vinson

I want to make a query using the two tables but I need it
to recognize the medrecno and patientid are same. Is
there a way to do this without renaming one of the two
fields?

A UNION query will "string together" the two tables; the names need
not match but the datatypes must. See UNION in the online help.
 

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

Top