I have a requirement to fetch case sensitive records from only one column of a table.
i.e their is a column email_address from which i have to find the email address which are same but they are in different cases.
for eg:
email_ address
---------------
abc@gmail.com
hef@gmail.com
ABC@gmail.com
hrf@gmail.com
from the above example given.I need a query to fetch only the records abc@gmail.com
and ABC@gmail.com
from the column email_address
.