ColdFusion 8's New Nested Query Loop Behavior (Thanks Rick Osborne)

<!---
	Loop over the girl query and for each girl,
	output the body parts that the girl has.
--->
<cfloop query="qGirl">
 
	<h2>
		#qGirl.name#
	</h2>
 
	<p>
		<cfloop query="qPart">
 
			#qGirl.name# has #qPart.name#<br />
 
		</cfloop>
	</p>
 
</cfloop>

For Cut-and-Paste