tjbee wrote:
So is there a way to delete rows from the result set based on the criteria?
A fundamental question, to which there is a fundamental answer: query of a query. For example
<cfquery name="newResultSet" dbtype="query">
select *
from originalQuery
where col1='criterium 1' and col2='criterium 2'
</cfquery>