View previous topic :: View next topic |
Author |
Message |
tcurrier Intermediate
Joined: 10 Feb 2006 Posts: 188 Topics: 68
|
Posted: Wed Jan 27, 2010 7:10 pm Post subject: literal string containing embedded apostrophe |
|
|
I want to query for all names that don't have alphabetic characters,
spaces, periods, or apostrophes ....
Example:
INSUREDS_NAME
JOHN J. O'CONNOR
[code:1:f476d5952d] AND TRANSLATE(D.INSUREDS_NAME,
'',
'ABCDEFGHIJKLMNOPQRSTUVWXYZ .') |
|
Back to top |
|
 |
tcurrier Intermediate
Joined: 10 Feb 2006 Posts: 188 Topics: 68
|
Posted: Wed Jan 27, 2010 7:46 pm Post subject: |
|
|
By doing a little experimenting, looks like I found the solution:
[code:1:bd80123aa4]AND TRANSLATE(D.INSUREDS_NAME,
'',
'ABCDEFGHIJKLMNOPQRSTUVWXYZ .''') |
|
Back to top |
|
 |
kolusu Site Admin

Joined: 26 Nov 2002 Posts: 12377 Topics: 75 Location: San Jose
|
|
Back to top |
|
 |
|
|