I'm runnning an app running on a Coldfusion8/MySQL 5.0.88 database.
The app has a search form which users can use to search for product-IDs.
Right now my SQL statement looks like this:
...
AND a.product_id LIKE <cfqueryparam value="%#form.s_product_id#%" cfsqltype="cf_sql_varchar">
Users are normally passing in a single id or partial id, so I need this to work for both:
123456 (full id)
123 (partial id)
However, I also want to enable users to search for multiple IDs. So a user might enter:
12345,233345,78876
Question:
I can clear out the spaces before submitting the form, but how do I make it so my MySQL search handler correclty identifies this as a list. If I just use IN instead of LIKE I will loose the partial_ID, won't I?
Thanks for inputs!

REGEXP UDF: launchpad.net/mysql-udf-regexp – Omesh Aug 22 '12 at 8:01LIKE %value%, if multiple values, I doIN (value,value,value). would that work? – frequent Aug 22 '12 at 8:12LIKEwill work in all cases whereasINwill only work for exact matches. – Omesh Aug 22 '12 at 8:16