使用 ColdFusion 9 服务器和 MS-SQL db,我正在尝试创建 html 表,其中 td 值与来自同一个 MS-Sql db 表的值相关联。
查询 1 - 获取部门:
<cfquery datasource="datasrc" name="qGetDep">
SELECT DISTINCT Dept
FROM someTable
WHERE isnull(Dept, '') != ''
ORDER BY DEPT ASC
</cfquery>
查询 2 - 获取名称
<cfquery datasource="datasrc" name="qGetNam">
SELECT a.Dept, a.names
FROM someTable as a
INNER JOIN
(
SELECT DISTINCT Dept, MIN(ID) as ID, names
FROM someTable
GROUP BY Dept, names
) as b
ON a.Dept = b.Dept
AND a.ID = b.ID
WHERE isnull(a.Dept, '') != ''
ORDER BY a.Dept ASC
</cfquery>
索引.cfm
<table border="1" id="table1">
<thead>
<tr>
<cfoutput query="qGetDep">
<th><b>#DEPT#</b></th>
</cfoutput>
</tr>
</thead>
<tbody>
<cfoutput query="qGetNam">
<tr>
<cfloop query="qGetDep">
<cfset cls= qGetDep.Dept>
<cfif qGetNam.Dept EQ cls >
<td class="#cls#">#qGetNam.names#</td>
<cfelse>
<td class="#cls#"></td>
</cfif>
</cfloop>
</tr>
</cfoutput>
</tbody>
</table>
使用我在 db 中的当前数据,这将输出类似于此的表:
我需要它变成这样。
jQuery 解决方案是可以接受的。
任何帮助将不胜感激。
谢谢你。