Question
recordcount a group
If you have a query... and you output your results with
groups...can you get a recordcount of how many records there are
for each group? Much like you would do query.recordcount - can you
do group.recordcount without having to do a mathematical approach
such as doing <CFSET groupcount=groupcount +1>.
Example:
<query>
<cfoutput query="query" group="name">
#name#
<cfouptut query"query" group="city">
#city#
</cfoutput>
</cfoutput>
I want to know how many records are contained in each group without having to do a CFSET.
Example:
<query>
<cfoutput query="query" group="name">
#name#
<cfouptut query"query" group="city">
#city#
</cfoutput>
</cfoutput>
I want to know how many records are contained in each group without having to do a CFSET.
