I am trying to find the IDs that have duplicate emails due to case sensitivity.
For below table
ID Email
101 example@gmail.com
101 EXAMPLE@gmail.com
102 email@gmail.com
102 email@gmail.com
103 la@gmail.com
103 sf@yahoo.com
The output should give below
ID Email
101 example@gmail.com
101 EXAMPLE@gmail.com
Only ID 101 and its email addresses should be displayed because that's the only ID that has duplicate emails due to case sensitivity.
Thank you in advance!