Consider the following sql command run in MySQL command prompt-
select 'aBc'='Abc';
O/P
+-------------+
| 'aBc'='Abc' |
+-------------+
| 1 |
+-------------+
I expected the result to show '0' in place of '1'.
How can I differentiate between two strings if they are not in the same case?