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

Select statement/ this ones easy 1

Status
Not open for further replies.

awesomeBA

Technical User
Jun 1, 2005
24
US
Ok I am very rusty and under a deadline. I need syntax help with the following Query.

Select *
From SvyDtl
Where SvyDtl.SdPrjnum = ClsdPort.CpPrjNum.

Any and all help is appreciated.
 
Where are you building this? Have you tried the query builder and SQL view? [ponder]
 
paste this in the SQL view:

Select *
From SvyDtl S
INNER JOIN ClsdPort C on S.SdPrjnum = C.CpPrjNum


Leslie

Anything worth doing is a lot more difficult than it's worth - Unknown Induhvidual

Essential reading for anyone working with databases: The Fundamentals of Relational Database Design
 
Thanks Lespaul... Worked like a charm!! Much love!!!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top