Skip to main content
replaced http://data.stackexchange.com/ with https://data.stackexchange.com/
Source Link

You can use the Stack Exchange Data ExplorerStack Exchange Data Explorer to queryquery the votes table:

select creationdate
     , sum(case when votetypeid = 1 then 1 else 0 end) accept
     , sum(case when votetypeid = 2 then 1 else 0 end) upvote
     , sum(case when votetypeid = 3 then 1 else 0 end) downvote
from votes
where postid = ##postid##
group by creationdate
order by creationdate

You'll notice that you'll only get dates for the votes, not the exact time the vote was casted. This is done to ensure anonymity of voting

Keep in mind this data is refreshed weekly on sunday.

You can use the Stack Exchange Data Explorer to query the votes table:

select creationdate
     , sum(case when votetypeid = 1 then 1 else 0 end) accept
     , sum(case when votetypeid = 2 then 1 else 0 end) upvote
     , sum(case when votetypeid = 3 then 1 else 0 end) downvote
from votes
where postid = ##postid##
group by creationdate
order by creationdate

You'll notice that you'll only get dates for the votes, not the exact time the vote was casted. This is done to ensure anonymity of voting

Keep in mind this data is refreshed weekly on sunday.

You can use the Stack Exchange Data Explorer to query the votes table:

select creationdate
     , sum(case when votetypeid = 1 then 1 else 0 end) accept
     , sum(case when votetypeid = 2 then 1 else 0 end) upvote
     , sum(case when votetypeid = 3 then 1 else 0 end) downvote
from votes
where postid = ##postid##
group by creationdate
order by creationdate

You'll notice that you'll only get dates for the votes, not the exact time the vote was casted. This is done to ensure anonymity of voting

Keep in mind this data is refreshed weekly on sunday.

Mortensen'd
Source Link
rene Mod
  • 94.8k
  • 18
  • 255
  • 539

You can use the Stack Exchange Data ExcplorerExplorer to query the votes table:

select creationdate
     , sum(case when votetypeid = 1 then 1 else 0 end) accept
     , sum(case when votetypeid = 2 then 1 else 0 end) upvote
     , sum(case when votetypeid = 3 then 1 else 0 end) downvote
from votes
where postid = ##postid##
group by creationdate
order by creationdate

You'll notice that you'll only get dates for the votes, not the exact time the vote was casted. This is done to ensure anonymity of voting

Keep in mind this data is refreshed weekly on sunday.

You can use the Stack Exchange Data Excplorer to query the votes table:

select creationdate
     , sum(case when votetypeid = 1 then 1 else 0 end) accept
     , sum(case when votetypeid = 2 then 1 else 0 end) upvote
     , sum(case when votetypeid = 3 then 1 else 0 end) downvote
from votes
where postid = ##postid##
group by creationdate
order by creationdate

You'll notice that you'll only get dates for the votes, not the exact time the vote was casted. This is done to ensure anonymity of voting

Keep in mind this data is refreshed weekly on sunday.

You can use the Stack Exchange Data Explorer to query the votes table:

select creationdate
     , sum(case when votetypeid = 1 then 1 else 0 end) accept
     , sum(case when votetypeid = 2 then 1 else 0 end) upvote
     , sum(case when votetypeid = 3 then 1 else 0 end) downvote
from votes
where postid = ##postid##
group by creationdate
order by creationdate

You'll notice that you'll only get dates for the votes, not the exact time the vote was casted. This is done to ensure anonymity of voting

Keep in mind this data is refreshed weekly on sunday.

Source Link
rene Mod
  • 94.8k
  • 18
  • 255
  • 539

You can use the Stack Exchange Data Excplorer to query the votes table:

select creationdate
     , sum(case when votetypeid = 1 then 1 else 0 end) accept
     , sum(case when votetypeid = 2 then 1 else 0 end) upvote
     , sum(case when votetypeid = 3 then 1 else 0 end) downvote
from votes
where postid = ##postid##
group by creationdate
order by creationdate

You'll notice that you'll only get dates for the votes, not the exact time the vote was casted. This is done to ensure anonymity of voting

Keep in mind this data is refreshed weekly on sunday.