You may need to get into database character functions.  I believe they 
all have them, but they all implement them slightly differently.  You 
will need to consult appropriate documentation for you database 
management system.

But you should be able to do something like this concept.

SELECT fields
FROM aTable
WHERE right(aField, 1) = ' '

I.E. Select records where the last character of a field is a space.

The purpose of the LIKE operator is to search the entire field for a 
match, and that is not really what you want.  You want to match a 
specific character.



~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:295749
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Reply via email to