Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

referencing

Status
Not open for further replies.

generaluser

Technical User
May 24, 2002
79
US
Can you reference a table in a query? If so, How

Is it Queries!queryname!field ?
 
Are you asking if you can reference a query in a query?
Yes.
You would use the query just like you would a table:

Select a, b, c
From tblTest, qryName
Where tbltest.id = qryName.Cid
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top