Created
March 25, 2021 20:35
-
-
Save RelativeTech/d92d348443f429f8fdf1df0e7aa24f98 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 p.project_id, sum(w.compensation) as TotalComp | |
from worker w, project_worker_map p | |
where = p.worker_id | |
group by project_id | |
having sum(w.compensation) > 500000 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment