H
Hank
I've inherited a database and I'm trying to reverse-engineer some of the
design to try and understand how it's put together. I've got this
query (below) and while it appears to work fine, it's referencing a
table (?) called qryuseddidholdings. Problem is, there is NO table with
that name. There IS a query with that name, but it's a different query
altogether.
Select tbldid800holdings.did, tbldid800holdings.dateassigned,
qryuseddidholdings.clientname
From tbldid800holdings LEFT JOIN qryuseddidholdings
On tbldid800holdings.did = qryuseddidholdings.did
Order by tbldid800holdings.did
Am I missing something obvious here?
Thanks
design to try and understand how it's put together. I've got this
query (below) and while it appears to work fine, it's referencing a
table (?) called qryuseddidholdings. Problem is, there is NO table with
that name. There IS a query with that name, but it's a different query
altogether.
Select tbldid800holdings.did, tbldid800holdings.dateassigned,
qryuseddidholdings.clientname
From tbldid800holdings LEFT JOIN qryuseddidholdings
On tbldid800holdings.did = qryuseddidholdings.did
Order by tbldid800holdings.did
Am I missing something obvious here?
Thanks