Let's say I have a table my_table
and it has two rows:
col1
-----
AAA
aaa
I have a problem in that if I do a
select col1, count(*)
from my_table
group by col1
I get
col1 | count(*)
----------------
AAA | 2
Is there anyway to stop this and differentiate AAA
and aaa
? It is very difficult for me to reconcile my result with other databases.
Regards,