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="newResults" dbtype="query">
select *
from originalQueryName
where col1='criterium 1' and col2='criterium 2'
</cfquery>