I would try the StrComp() function. For example:
[tt]
SELECT *
FROM Table1
WHERE StrComp([Field1],'SMITH',0)=0;
[/tt]
...will return records from Table1 where the value in Field1 equals "SMITH", but not "smith" or "Smith" or any other upper-lower case arrangement of the word.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.