> Hello all,
>           I would like to know how you guys are nesting queries?
> i have to "Nest" multiple queries like
> 
> <cfoutput query="query1">
> ----
>   <cfoutput query="query2">
>     ---
>     <cfoutput query="query3">
>     --
>     </cfoutput>
>   </cfoutput>
> </cfoutput>
> 
> How can i do this?
> Thanks inadvance

You can use loops instead:

<cfoutput>
<cfloop query="query1">
        <cfloop query="query2">
                <cfloop query="query3">
                </cfloop>
        </cfloop>
</cfloop>
</cfoutput>



- Sean

~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Sean Daniels
Manager, Engineering
DealStream.com
[EMAIL PROTECTED]
http://www.dealstream.com
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
tel: 207.439.6030
cel: 978.764.0779
 


------------------------------------------------------------------------------
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

Reply via email to