Skip to content

Instantly share code, notes, and snippets.

@figital
Created April 16, 2015 15:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save figital/a03610611a83ca4b946e to your computer and use it in GitHub Desktop.
Save figital/a03610611a83ca4b946e to your computer and use it in GitHub Desktop.
select
word,
sum(word_count) as num
from
publicdata:samples.shakespeare
where
lower(word) like 'z%'
group by
word
order by
num desc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment