Skip to content

Instantly share code, notes, and snippets.

@grgaortiz
Created October 30, 2015 17:55
Show Gist options
  • Save grgaortiz/5261167a0752eb876415 to your computer and use it in GitHub Desktop.
Save grgaortiz/5261167a0752eb876415 to your computer and use it in GitHub Desktop.
SELECT current,
avg(monthsTenure) as monthsTenure
FROM UtahAgencyEmployees
WHERE current != '' AND monthsTenure < 73
GROUP BY current
HAVING count(*) > 2
ORDER BY monthsTenure DESC
LIMIT 20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment