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 John Tel on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

report query 1

Status
Not open for further replies.

jtfrier

Technical User
Jan 12, 2006
85
I am trying to creat a report using a query i have 5 table in there with a primary key all joined to one main table I have another table that I need to get information from that does not have a relation ship with all the other table so when I add it to the query it will not run. I dont want to add the primary key field to this table if posible.
 
use a subquery...

--------------------
Procrastinate Now!
 
lol...

select fldNme1, fldNme2,
(
select anotherFldNme from anotherTable
)
from table

--------------------
Procrastinate Now!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top