Nov 21, 2005 #1 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.
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.
Nov 21, 2005 #2 Remou Technical User Sep 30, 2002 13,030 BE Where are you building this? Have you tried the query builder and SQL view? Upvote 0 Downvote
Nov 21, 2005 1 #3 lespaul Programmer Feb 4, 2002 7,083 US 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 Upvote 0 Downvote
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
Nov 21, 2005 Thread starter #4 awesomeBA Technical User Jun 1, 2005 24 US Thanks Lespaul... Worked like a charm!! Much love!!! Upvote 0 Downvote