Generate series
Summarize the distribution of the number of questions with the tag "dropbox" on Stack Overflow per day by binning the data.
Recall:
generate_series(from, to, step)
You can reference the slides using the PDF icon in the upper right corner of the screen.
This exercise is part of the course
Exploratory Data Analysis in SQL
Hands-on interactive exercise
Have a go at this exercise by completing this sample code.
-- Select the min and max of question_count
SELECT ___,
___
-- From what table?
FROM ___
-- For tag dropbox
___ ___ ___ ___;