All Questions
Tagged with automatic-deletion stack-overflow-history
1 question
70
votes
2
answers
4k
views
What happened on Stack Overflow on 31 May 2019?
I was analyzing the proportion of questions which received at least one answer within 48 hours, using Bigquery:
select da, avg(answered)
from
(SELECT a.id, date(a.creation_date) as da, max(case when ...