Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
SELECT company
FROM applicants
GROUP BY company
HAVING COUNT(account_id) > 1
CREATE VIEW multi_applicants AS
SELECT applicant_id
FROM applicants
GROUP BY applicant_id
HAVING COUNT(account_id) > 1
SELECT applicants.*
FROM applicants
JOIN multi_applicants ON applicants.applicant_id = multi_applicants.applicant_id
SELECT *
FROM applicants
WHERE applicant_id IN
(SELECT applicant_id
FROM applicants
GROUP BY applicant_id
HAVING COUNT(account_id) > 1
)