It would appear that you are reading it correct but it is for QoQs Is that where you are using it?
-----Original Message----- From: Les Mizzell [mailto:[EMAIL PROTECTED] Sent: Thursday, September 01, 2005 9:23 PM To: CF-Talk Subject: Re: Where ClientName Like '[a-d]%' - How would you actually do this? According to the MM livedocs: * The underscore (_) represents any single character. * The percent sign (%) represents zero or more characters. * Square brackets ([ ]) represents any character in the range. * Square brackets with a caret [^] represent any character not in the range. * All other characters represent themselves. The following examples are select statements that use bracketed ranges: SELECT lname FROM Suspects WHERE lname LIKE 'A[^c]%'; SELECT lname FROM Suspects WHERE lname LIKE '[a-m]%'; SELECT lname FROM Suspects WHERE lname LIKE '%[]'; SELECT lname FROM Suspects WHERE lname LIKE 'A[%]%'; SELECT lname FROM Suspects WHERE lname LIKE 'A[^c-f]%'; So, according to that: SELECT * FROM ClientInfo WHERE ClientName LIKE '[a-m]%' Should work, no? Or am I reading this wrong? -- ----------- Les Mizzell ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project or with a client with Logware today. Try it for free with a 15 day trial account. http://www.houseoffusion.com/banners/view.cfm?bannerid=67 Message: http://www.houseoffusion.com/lists.cfm/link=i:4:217187 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4 Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4 Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

