languish icon indicating copy to clipboard operation
languish copied to clipboard

Add StackOverflow data

Open tjpalmer opened this issue 4 years ago • 1 comments

tjpalmer avatar Mar 08 '20 17:03 tjpalmer

Here's a link for this:

https://console.cloud.google.com/bigquery?p=bigquery-public-data&d=stackoverflow&page=dataset

This might get the job done for question creation by quarter:

SELECT tags, extract(year FROM creation_date), extract(quarter FROM creation_date), count(*)  FROM `bigquery-public-data.stackoverflow.posts_questions`
group by tags, extract(year FROM creation_date), extract(quarter FROM creation_date)

It didn't like me sorting by year and quarter, though.

tjpalmer avatar Oct 09 '20 02:10 tjpalmer