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.