Skip to main content
added 3469 characters in body
Source Link

I don't know enough about SQL to build one, but Bill the Lizard already did the grondground work for us and presented the below sniper, so I adapted to get the number of questions per month per year.

SELECT count(Id), MONTH(CreationDate), YEAR(CreationDate)
  FROM Posts
  WHERE PostTypeId = 1
  GROUP BY YEAR(CreationDate), MONTH(CreationDate)
  ORDER BY YEAR(CreationDate), MONTH(CreationDate)

You can test it at https://data.stackexchange.com/blender/query/1774058/total-questions-per-yearhttps://data.stackexchange.com/blender/query/1774167/total-questions-per-month-year

YearMonth Questions Total
2013 1583May138138
2013Jun262400
2013Jul164564
2013Aug188752
2013Sep174926
2013Oct1791105
2013Nov2131318
2013Dec2651583
2014 4169Jan2851868
2014Feb2942162
2014Mar3062468
2014Apr3332801
2014May3253126
2014Jun3123438
2014Jul3443782
2014Aug3294111
2014Sep3244435
2014Oct4454880
2014Nov 3935273
2014Dec4795752
2015 7753Jan6006352
2015Feb5626914
2015Mar6187532
2015Apr5478079
2015May6768755
2015Jun5869341
2015Jul68510026
2015Aug81710843
2015Sep65611499
2015Oct65812157
2015Nov64312800
2015Dec 70513505
2016 9624Jan80514310
2016Feb75315063
2016Mar77115834
2016Apr71216546
2016May82317369
2016Jun82718196
2016Jul84819044
2016Aug80419848
2016Sep82720675
2016Oct89621571
2016Nov80122372
2016 Dec75723129
2017 9972Jan90724036
2017Feb81524851
2017Mar86225713
2017Apr76926482
2017May66427146
2017Jun76927915
2017Jul967 28882
2017Aug93429816
2017Sep82730643
2017Oct85631499
2017Nov83132330
2017Dec77133101
2018 10256Jan84833949
2018Feb85634805
2018Mar94235747
2018Apr81036557
2018May92137478
2018Jun83238310
2018Jul87439184
2018Aug83840022
2018Sep82340845
2018 Oct76041605
2018Nov82742432
2018Dec92543357
2019 13061Jan113744494
2019Feb106145555
2019Mar110046655
2019Apr105247707
2019May91648623
2019Jun90449527
2019Jul109850625
2019Aug141352038
2019Sep114653184
2019Oct104754231
2019Nov107055301
2019Dec 111756418
2020 16286Jan122857646
2020Feb118258828
2020Mar129660124
2020Apr142361547
2020May155663103
2020Jun163864741
2020Jul150566246
2020Aug138667632
2020Sep131368945
2020Oct128370228
2020Nov124571473
2020 Dec123172704
2021 14268Jan138174085
2021Feb139075475
2021Mar139876873
2021Apr124978122
2021May119779319
2021Jun1161 80480
2021Jul119681676
2021Aug108582761
2021Sep108283843
2021Oct98584828
2021Nov98385811
2021Dec116186972
2022 14375Jan147088442
2022Feb106989511
2022Mar125590766
2022Apr124492010
2022May114593155
2022Jun112694281
2022Jul116595446
2022Aug130696752
2022Sep113997891
2022Oct116799058
2022Nov 1130100188
2022Dec1159101347
2023 7792Jan1192102539
2023Feb1147103686
2023Mar1130104816
2023Apr1009105825
2023May1065106890
2023Jun946107836
2023Jul1109108945
2023Aug194 109139

I don't know enough about SQL to build one, but Bill the Lizard already did the grond work for us and presented the below sniper to get the number of questions per year.

SELECT count(Id), YEAR(CreationDate)
  FROM Posts
  WHERE PostTypeId = 1
  GROUP BY YEAR(CreationDate)

You can test it at https://data.stackexchange.com/blender/query/1774058/total-questions-per-year

Year Questions Total
2013 1583 1583
2014 4169 5752
2015 7753 13505
2016 9624 23129
2017 9972 33101
2018 10256 43357
2019 13061 56418
2020 16286 72704
2021 14268 86972
2022 14375 101347
2023 7792 109139

I don't know enough about SQL to build one, but Bill the Lizard already did the ground work for us, so I adapted to get the number of questions per month per year.

SELECT count(Id), MONTH(CreationDate), YEAR(CreationDate)
  FROM Posts
  WHERE PostTypeId = 1
  GROUP BY YEAR(CreationDate), MONTH(CreationDate)
  ORDER BY YEAR(CreationDate), MONTH(CreationDate)

You can test it at https://data.stackexchange.com/blender/query/1774167/total-questions-per-month-year

YearMonth Questions Total
2013 May138138
2013Jun262400
2013Jul164564
2013Aug188752
2013Sep174926
2013Oct1791105
2013Nov2131318
2013Dec2651583
2014 Jan2851868
2014Feb2942162
2014Mar3062468
2014Apr3332801
2014May3253126
2014Jun3123438
2014Jul3443782
2014Aug3294111
2014Sep3244435
2014Oct4454880
2014Nov 3935273
2014Dec4795752
2015 Jan6006352
2015Feb5626914
2015Mar6187532
2015Apr5478079
2015May6768755
2015Jun5869341
2015Jul68510026
2015Aug81710843
2015Sep65611499
2015Oct65812157
2015Nov64312800
2015Dec 70513505
2016 Jan80514310
2016Feb75315063
2016Mar77115834
2016Apr71216546
2016May82317369
2016Jun82718196
2016Jul84819044
2016Aug80419848
2016Sep82720675
2016Oct89621571
2016Nov80122372
2016 Dec75723129
2017 Jan90724036
2017Feb81524851
2017Mar86225713
2017Apr76926482
2017May66427146
2017Jun76927915
2017Jul967 28882
2017Aug93429816
2017Sep82730643
2017Oct85631499
2017Nov83132330
2017Dec77133101
2018 Jan84833949
2018Feb85634805
2018Mar94235747
2018Apr81036557
2018May92137478
2018Jun83238310
2018Jul87439184
2018Aug83840022
2018Sep82340845
2018 Oct76041605
2018Nov82742432
2018Dec92543357
2019 Jan113744494
2019Feb106145555
2019Mar110046655
2019Apr105247707
2019May91648623
2019Jun90449527
2019Jul109850625
2019Aug141352038
2019Sep114653184
2019Oct104754231
2019Nov107055301
2019Dec 111756418
2020 Jan122857646
2020Feb118258828
2020Mar129660124
2020Apr142361547
2020May155663103
2020Jun163864741
2020Jul150566246
2020Aug138667632
2020Sep131368945
2020Oct128370228
2020Nov124571473
2020 Dec123172704
2021 Jan138174085
2021Feb139075475
2021Mar139876873
2021Apr124978122
2021May119779319
2021Jun1161 80480
2021Jul119681676
2021Aug108582761
2021Sep108283843
2021Oct98584828
2021Nov98385811
2021Dec116186972
2022 Jan147088442
2022Feb106989511
2022Mar125590766
2022Apr124492010
2022May114593155
2022Jun112694281
2022Jul116595446
2022Aug130696752
2022Sep113997891
2022Oct116799058
2022Nov 1130100188
2022Dec1159101347
2023 Jan1192102539
2023Feb1147103686
2023Mar1130104816
2023Apr1009105825
2023May1065106890
2023Jun946107836
2023Jul1109108945
2023Aug194 109139
added 58 characters in body
Source Link

Data Stack Exchange API will let you build SQL Queries to get whatever datastats you want about a stack exchange site.

I don't know enough about SQL to build one, but Bill the Lizard already did the grond work for meus and presented the below sniper to get the number of questions per year.

SELECT count(Id), YEAR(CreationDate)
  FROM Posts
  WHERE PostTypeId = 1
  GROUP BY YEAR(CreationDate)

You can test it at https://data.stackexchange.com/blender/query/1774058/total-questions-per-year

After extracting the output CSV file into your favoritea spreadsheet softwareeditor we can compute a partial sum column.

Year Questions Total
2013 1583 1583
2014 4169 5752
2015 7753 13505
2016 9624 23129
2017 9972 33101
2018 10256 43357
2019 13061 56418
2020 16286 72704
2021 14268 86972
2022 14375 101347
2023 7792 109139

Using your favorite office suite weyou can then build a beautiful line chart.

Blender Stack Exchange Total Questions per year line chart 2023

Data Stack Exchange API will let you build SQL Queries to get whatever data you want about a stack exchange site.

I don't know enough about SQL to build one, but Bill the Lizard did the grond work for me and presented the below sniper

SELECT count(Id), YEAR(CreationDate)
  FROM Posts
  WHERE PostTypeId = 1
  GROUP BY YEAR(CreationDate)

You can test at https://data.stackexchange.com/blender/query/1774058/total-questions-per-year

After extracting the output CSV file into your favorite spreadsheet software we can compute a sum column.

Year Questions Total
2013 1583 1583
2014 4169 5752
2015 7753 13505
2016 9624 23129
2017 9972 33101
2018 10256 43357
2019 13061 56418
2020 16286 72704
2021 14268 86972
2022 14375 101347
2023 7792 109139

Using your favorite office suite we can build a beautiful chart.

Blender Stack Exchange Total Questions per year line chart 2023

Data Stack Exchange API will let you build SQL Queries to get whatever stats you want about a stack exchange site.

I don't know enough about SQL to build one, but Bill the Lizard already did the grond work for us and presented the below sniper to get the number of questions per year.

SELECT count(Id), YEAR(CreationDate)
  FROM Posts
  WHERE PostTypeId = 1
  GROUP BY YEAR(CreationDate)

You can test it at https://data.stackexchange.com/blender/query/1774058/total-questions-per-year

After extracting the output CSV file into a spreadsheet editor we can compute a partial sum column.

Year Questions Total
2013 1583 1583
2014 4169 5752
2015 7753 13505
2016 9624 23129
2017 9972 33101
2018 10256 43357
2019 13061 56418
2020 16286 72704
2021 14268 86972
2022 14375 101347
2023 7792 109139

Using your favorite office suite you can then build a beautiful line chart.

Blender Stack Exchange Total Questions per year line chart 2023

Source Link

Data Stack Exchange API will let you build SQL Queries to get whatever data you want about a stack exchange site.

I don't know enough about SQL to build one, but Bill the Lizard did the grond work for me and presented the below sniper

SELECT count(Id), YEAR(CreationDate)
  FROM Posts
  WHERE PostTypeId = 1
  GROUP BY YEAR(CreationDate)

You can test at https://data.stackexchange.com/blender/query/1774058/total-questions-per-year

After extracting the output CSV file into your favorite spreadsheet software we can compute a sum column.

Year Questions Total
2013 1583 1583
2014 4169 5752
2015 7753 13505
2016 9624 23129
2017 9972 33101
2018 10256 43357
2019 13061 56418
2020 16286 72704
2021 14268 86972
2022 14375 101347
2023 7792 109139

Using your favorite office suite we can build a beautiful chart.

Blender Stack Exchange Total Questions per year line chart 2023