Hi,
The DB in question is an ACCESS 2000 DB having a table
named client having a field which stores client names.
This field can have any character in it. The problem
is to find names avoiding non alphanumeric characters
from it.
Pls consider the following example data
client_name
-----------
A B C Ltd.
ABC Ltd.
A.B.C. Ltd
We need to find all info even if the client_name is
"abc ltd" or "abcl".
One solution is to use the LIKE operator to form an
sql like this
SELCET * ... where Client_name LIKE
"a[!a-z0-9]b[!a-z0-9]c[!a-z0-9]l*" OR client_name LIKE
'abc l*'
where we check for any non-alphanumeric character
between every letter in the search phrase. But here
the problem is it will not pick the third data as it
has two non-alphanumeric chars before the word "ltd".
The ideal situation will be to use the "[!a-z0-9]"
part to search a zero or more occurances somewhat like
the following
SELCET * ... where Client_name LIKE
"a{[!a-z0-9]*}b{[!a-z0-9]*}...*"
The data inside the {} will be checked for zero or
more occurences (the * operator). Unfortunately its
not working with Access.
Any idea how it can achieved with Access SQL?
Any work around for this.Please help !!
Bill
The DB in question is an ACCESS 2000 DB having a table
named client having a field which stores client names.
This field can have any character in it. The problem
is to find names avoiding non alphanumeric characters
from it.
Pls consider the following example data
client_name
-----------
A B C Ltd.
ABC Ltd.
A.B.C. Ltd
We need to find all info even if the client_name is
"abc ltd" or "abcl".
One solution is to use the LIKE operator to form an
sql like this
SELCET * ... where Client_name LIKE
"a[!a-z0-9]b[!a-z0-9]c[!a-z0-9]l*" OR client_name LIKE
'abc l*'
where we check for any non-alphanumeric character
between every letter in the search phrase. But here
the problem is it will not pick the third data as it
has two non-alphanumeric chars before the word "ltd".
The ideal situation will be to use the "[!a-z0-9]"
part to search a zero or more occurances somewhat like
the following
SELCET * ... where Client_name LIKE
"a{[!a-z0-9]*}b{[!a-z0-9]*}...*"
The data inside the {} will be checked for zero or
more occurences (the * operator). Unfortunately its
not working with Access.
Any idea how it can achieved with Access SQL?
Any work around for this.Please help !!
Bill