Hi,
Assuming, but not sure, if you would like to query the parcel table in
order to retrieve persons' names, and not the other way around.
If this is the case, here is one way to look at it:
Let's say ParcelGeo is your geographic table and OwnerData is tabular
data.
Select From: ParcelGeo, OwnerData
Where: ParcelGeo.id = OwnerData.parcelnumber
This would return a Queryn that would have something like
3546, Jonhson
3546, Smith
3548, May
3550, Marriott
3550, Shelley
3550, Oakley
If you save your File>Save *Query>"Save Table As Query" with a name
like JOIN_PARCEL_NAMES
you could have it for later use and it would be automatically updated
if the ParcelGeo or OwnerData get modified
Add JOIN_PARCEL_NAMES to a map window, and this method would allow you
to use the info tool on a parcel and get the names of all its owners
(A), and inversely search for a Name like "Ma%" and get all the
parcels whose owners start with these two letters (B).
(A)
3546, Johnson
3546, Smith
or
(B)
3548, May
3550, Marriott
Hope this helps