我试图通过一次查询多个类别中的大量项目来保存我的数据库服务器一些请求,然后使用<cfif ... >
语句将这些结果过滤到我为每个类别显示的唯一表中。我正在寻找返回的每个类别的记录计数,而不仅仅是整个查询的记录计数。
基本代码为:
<cfinvoke component="..." method="..." returnvariable="session.queryList">
...
</cfinvoke>
<cfoutput #session.queryList#>
<cfif #category# eq "A">
[Table for A things]
</cfif>
<cfif #category# eq "B">
[Table for B things]
</cfif>
<cfif #category# eq "C">
[Table for C things]
</cfif>
</cfoutput>
我不想在这里使用"ORDER BY category",因为这些表实际上位于我们隐藏和显示的不同div 上,因此我们需要单独的表。
我遇到的问题是,如果没有返回 category="A" 的记录,我希望"A 事物表"说"没有结果",但 RecordCount 似乎适用于整个查询。有什么办法可以说一些类似<cfif #queryList.RecordCount# WHERE #category# eq "A" GT "0">
的话吗?
QoQ可以提供帮助。
<cfinvoke component="..." method="..." returnvariable="session.queryList">
...
</cfinvoke>
<!---then run QoQ on it--->
<cfquery name="catA" dbtype="query">
select * from session.queryList where category ="A"
</query>
<cfquery name="catB" dbtype="query">
select * from session.queryList where category ="B"
</query>
<cfif catA.recordcount>
<cfoutput query="catA">
[Table for A things]
</cfoutput>
<cfelse>
No Records for A things
</cfif>
<cfif catB.recordcount>
<cfoutput query="catB">
[Table for B things]
</cfoutput>
<cfelse>
No Records for B things
</cfif>
我相信您正在尝试执行以下操作。<cfoutput>
具有一项功能,可帮助您对查询结果进行分组,因为查询是按分组项排序的。
<cfoutput query="#session.queryList#" group="category">
<h3>Category #category#</h3>
<table>
<tr><th>...</th><th>...</th></tr>
<cfoutput><!--- This cfoutput loops through the each record in the group. --->
---rows---
</cfoutput>
<table>
</cfoutput>
QofQ很慢。您可以通过一次往返 mySQL 来实现此目的:
SELECT someColumn, category, count(*) AS categoryCount
FROM theTable
GROUP BY category
ORDER BY category, someColumn
分组将为您提供每个类别的计数,您可以在 CFML 中使用。
<cfoutput query="session.queryList" group="category">
<cfif categoryCount eq 0>
No Records for #category#. =(
</cfif>
<cfoutput>
#someColumn#<br>
</cfoutput>
</cfoutput>