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
---------------
[email protected]
[email protected]
[email protected]
[email protected]
from the above example given.I need a query to fetch only the records [email protected]
and [email protected]
from the column email_address
.