Created
May 21, 2013 14:01
-
-
Save danabauer/5620000 to your computer and use it in GitHub Desktop.
cartodb ece sql
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
# This is counting distinct facilities with a capacity less than 10, grouped by star level | |
SELECT star_level, count(DISTINCT facility_name) FROM ocdelphl | |
where capacity < 10 | |
group by star_level |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment