Referring to same cfquery multiple times returns different results
I'll try to slim this down a bit.
<cfquery year_loop>
<cfquery school_detail_counts_by_Year>
<cfloop query= "year_loop">
<cfloop query= "school_detail_counts_by_Year">
output is fine, for each year, I get each set of school detail counts
</cfloop>
</cfloop>
Later below in same page I am essentially repeating this (for debugging), in reality I will still be looping through same two queries as above to make bar charts)
<cfloop query= "year_loop">
<cfloop query= "school_detail_counts_by_Year">
output is ALWAYS values from LAST row in query (YET I can display the data from YEAR_LOOP which shows it is changing)
</cfloop>
</cfloop>
Help, please help. I have no hair left!
