Case sensitive query for MS Access

manoj22_srivastava

New member
Local time
Today, 11:00
Joined
Mar 22, 2009
Messages
5
Hi All,

I am looking for case sensitive query for MS Access. For whole string, I can use StrComp(). But, I am looking for "Startswith" and "Any part of the field means Contains". It must be case sensitive. I know in SQL but I don't any function for Access. Please share your knowledge if any buddy knows about it.

Thanks & Regards,
Manoj Srivastava

:o
 
You could pass the string to a function, and test the ascii value of the first character.

'A' has an ascii value of 65 and 'a' has a value of 97
 

Users who are viewing this thread

Back
Top Bottom