macromedia.coldfusion.database_access
[Top] [All Lists]

Re: Outer join/inner join

Subject: Re: Outer join/inner join
From: "draves" <webforumsuser@xxxxxxxxxxxxxx>
Date: Wed, 20 Feb 2008 04:58:03 +0000 (UTC)
Newsgroups: macromedia.coldfusion.database_access

where
 Table2.EventID = Table1.EventID and
 Table2.PromoterID = Table4.PromoterID and
 Table2.LeagueID = Table3.LeagueID 
 <cfif isdefined("form.leagueacronym")>
 <cfif trim(form.leagueacronym) neq ''>
 and table2.eventid in
 (select t2a.eventid from table2 t2a,table3 t3
 where t2a.eventid = table2.eventid 
 and t2a.leagueid =  t3.leagueid
 and t3.leagueacronym = '#form.leagueacronym#')
 </cfif>
 </cfif>


<Prev in Thread] Current Thread [Next in Thread>