Created
August 20, 2018 03:57
-
-
Save ilyasahsan123/dddfe46648cfa484fbc54b3e55925a59 to your computer and use it in GitHub Desktop.
This file contains 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 tag | |
,count(*) number | |
from( | |
select SPLIT(q.tags, '|') tag | |
from [bigquery-public-data:stackoverflow.posts_questions] q | |
join [bigquery-public-data:stackoverflow.users] u | |
on q.owner_user_id = u.id | |
where REGEXP_MATCH(u.location, '(?i)indonesia') | |
) | |
group by tag | |
order by number desc | |
limit 10 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment