Created
March 25, 2021 20:32
-
-
Save RelativeTech/161dea723d200bffcc2b6400644f15c0 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 project_id, count(worker_id) as Worker_Count | |
from project_worker_map | |
group by project_id | |
having count(worker_id) > 2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment