Hi guys,

I was hoping you could help me. I have a problem regarding querying records but I need to consider the cases of the characters.

For example, the 'text_msg' field has 'Hello' and 'hello' on it.

I want to query something like this:
select * from <table> where text_msg = 'Hello'
(which returns records with 'Hello' and exclude 'hello' records

and
select * from <table> where text_msg = 'hello'
(which returns records with 'hello and exclude 'Hello' records.

Thanks in advance