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

<!---
	Create the new query instance to keep track
	of the girls.
--->
<cfset qGirl = QueryNew( "" ) />
 
<!---
	Add a column to the query and assign it some
	default values.
--->
<cfset QueryAddColumn(
	qGirl,
	"name",
	"CF_SQL_VARCHAR",
	ListToArray( "Kimmie,Samantha,Julia" )
	) />
 
 
<!---
	Create the new query instane to keep track of
	the body parts that the girls might have.
--->
<cfset qPart = QueryNew( "" ) />
 
<!---
	Add a column to the query and assign it some
	default values.
--->
<cfset QueryAddColumn(
	qPart,
	"name",
	"CF_SQL_VARCHAR",
	ListToArray( "Head,Hips,Butt,Feet" )
	) />

For Cut-and-Paste