Not sure how I came across it but this small number of fake profiles could be some insight into potentially many other fake company and person profiles we have that are in our production dataset.
SELECT *
--COUNT(*)
FROM person.person a,
person.job b
WHERE a.id = b.person_id
AND b.company_id IN (
SELECT id
WHERE primary_name LIKE '%dunder%mifflin%');