Last active
December 14, 2022 05:03
-
-
Save jeremywadsack/cd607de4169aa17074067a51bfdd94a9 to your computer and use it in GitHub Desktop.
Employees with duplicate phone numbers that are cross-company
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
select | |
e.phone_number, | |
e.name, | |
e.public_id as employee_public_id, | |
c.name as company_name, | |
c.public_id as company_public_id, | |
d.name as division_name, | |
d.public_id as division_public_id | |
from customers_employee e | |
left join customers_company c on e.company_id = c.id | |
left join customers_division d on e.division_id = d.id | |
where | |
is_active=true and | |
phone_number in ( | |
select | |
phone_number | |
from customers_employee | |
where | |
is_active=true and | |
phone_number is not null and | |
phone_number != '' | |
group by phone_number | |
having count(distinct(company_id)) > 1 | |
) | |
group by | |
e.phone_number, | |
e.name, | |
e.public_id, | |
c.name, | |
c.public_id, | |
d.name, | |
d.public_id | |
order by 1; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment