<!--- 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>