部門ごとにグループ化された従業員を表示するクエリと表示があります。それは正常に動作しますが、私が理解できないことが必要なことがもう1つあります。部門名の横に、「(x 従業員)」というテキストを追加する必要があります。ここで、x はその部門の従業員数です。例:
MARKETING (2 employees)
John Doe
Jane Smith
私のコードは以下の通りです:
<cfquery name="getEmpsByDept" datasource="#application.DSN#" dbtype="ODBC">
SELECT DISTINCT First, Last, Department
FROM SuccessFactorsPeople
ORDER BY Department
</cfquery>
<table border="0" width="70%" cellpadding="0" cellspacing="0">
<cfoutput query="getEmpsByDept" group="Department">
<tr>
<td><b>#Ucase(Department)#</b></td>
</tr>
<cfoutput>
<tr>
<td> #TRIM(First)# #TRIM(Last)#</td>
</tr>
</cfoutput>
<tr>
<td height="0"> </td>
</tr>
</cfoutput>
</table>