Have you even wanted to search for multiple words in a search (but as separate elements)? If a user typed in:
"ColdFusion MX Tutorials"
in a search box, this tutorial will show you how to accuretly return results from your data, where each individual word is filtered from the data...
<CFQUERY NAME="searchresults" DATASOURCE="yourdatasource">
SELECT *
FROM table
WHERE 0=0
AND
(
<cfloop index="i" list="#form.searchkeyword#" delimiters=" ">
<cfoutput>fieldname LIKE '%#i#%' AND </cfoutput>
</cfloop>
'%%')
</CFQUERY>
it is so simple ......