Oh Baby, It's So Hot When You Paginate! (aka Paginating Results In ColdFusion)

<!--- Check for IDs. --->
<cfif qID.RecordCount>
 
	<cfloop
		index="intRow"
		from="#REQUEST.Pager.GetStart()#"
		to="#REQUEST.Pager.GetEnd()#"
		step="1">
 
		OR
			b.id = <cfqueryparam
					value="#qID[ 'id' ][ intRow ]#"
					cfsqltype="CF_SQL_INTEGER"
					/>
	</cfloop>
 
</cfif>

For Cut-and-Paste