TABLE : Employees
SOLUTION:-
select name,email,count(*)
from employees
Group by name,email
Having
count(*)>1
OUTPUT:-
Tags:
ORACLE SQL
TABLE : Employees
SOLUTION:-
select name,email,count(*)
from employees
Group by name,email
Having
count(*)>1
OUTPUT:-