Let's collect some interesting queries for the Stack Exchange Data Explorer here.

How many upvotes do I have for each tag? (how long before tag badges?)

SELECT TOP 20 
    TagName,
    COUNT(*) AS UpVotes 
FROM Tags
    INNER JOIN PostTags ON PostTags.TagId = Tags.id
    INNER JOIN Posts ON Posts.ParentId = PostTags.PostId
    INNER JOIN Votes ON Votes.PostId = Posts.Id
WHERE Votes.VoteTypeId=2 
    AND Posts.CommunityOwnedDate IS NULL 
    AND Posts.OwnerUserId = @UserId
GROUP BY TagName 
ORDER BY UpVotes DESC

How high is the accepted percentage of my answers? (am I doing it good?)

SELECT 
    (CAST(COUNT(a.Id) AS float) / (SELECT COUNT(*) FROM Posts WHERE OwnerUserId = @UserId AND PostTypeId = 2) * 100) AS AcceptedPercentage
FROM Posts q
    INNER JOIN Posts a ON q.AcceptedAnswerId = a.Id
WHERE a.OwnerUserId = @UserId 
    AND a.PostTypeId = 2

How many votes do my comments have? (how long before Pundit?)

SELECT 
    COUNT(*) AS CommentCount, 
    Score
FROM Comments
WHERE UserId = @UserId
GROUP BY Score
ORDER BY Score DESC

How high would my reputation approximately be when there was no cap or CW?

SELECT 
    SUM(CASE
        WHEN VoteTypeId = 1 THEN 15 -- Accepted answer.
        WHEN VoteTypeId = 2 AND PostTypeId = 1 THEN 5 -- Upvoted question.
        WHEN VoteTypeId = 2 AND PostTypeId = 2 THEN 10 -- Upvoted answer.
        WHEN VoteTypeId = 3 THEN -2 -- Downvote.
        WHEN VoteTypeId = 9 THEN BountyAmount -- Earned Bounty.
    END) AS UncappedReputation
FROM Votes
    INNER JOIN Posts ON Posts.Id = Votes.PostId
WHERE Posts.OwnerUserId = @UserId

Users with more than 10 accounts on same email (sockpuppets? Oh, Oh, James Brown is Dead!)

SELECT 
    u1.EmailHash, 
    COUNT(u1.Id) AS Accounts, 
    (SELECT CAST(u2.Id AS varchar) + ' (' + u2.DisplayName + '), ' FROM Users u2 WHERE u2.EmailHash = u1.EmailHash FOR XML PATH ('')) AS IdsAndNames
FROM Users u1
WHERE u1.EmailHash IS NOT NULL
GROUP BY u1.EmailHash
HAVING COUNT(u1.Id) > 10
ORDER BY Accounts DESC

Downvote ratio of users with > 10 downvotes (the pessimists ;-) )

SELECT TOP 100 
Id as [User Link],
UpVotes,
DownVotes,
(CAST(DownVotes AS float) / (CASE WHEN UpVotes = 0 THEN 1 ELSE CAST(UpVotes AS float) END)) AS DownVoteRatio
FROM Users
WHERE DownVotes > 10
ORDER BY DownVoteRatio DESC

What is my average answer score? (change PostTypeId to 1 to get average question score)

SELECT 
    AVG(CAST(Score AS float)) AS AverageAnswerScore
FROM Posts
    INNER JOIN Users ON Users.Id = OwnerUserId
WHERE OwnerUserId = @UserId 
    AND PostTypeId = 2

Users with highest average answer score (and having > 100 answers)

SELECT TOP 100
    Users.Id,
    DisplayName,
    Count(Posts.Id) AS Answers,
    AVG(CAST(Score AS float)) AS AverageAnswerScore
FROM Posts
    INNER JOIN Users ON Users.Id = OwnerUserId
WHERE PostTypeId = 2
GROUP BY Users.Id, DisplayName
HAVING Count(Posts.Id) > 100
ORDER BY AverageAnswerScore DESC

Users with high self-accept rates (and having > 10 answers) (the extreme self-learners)

SELECT TOP 100 
    Users.Id AS [User Link],
    (CAST(COUNT(a.Id) AS float) / CAST((SELECT COUNT(*) FROM Posts p WHERE p.OwnerUserId = Users.Id AND PostTypeId = 1) AS float) * 100) AS SelfAnswerPercentage
FROM Posts q
    INNER JOIN Posts a ON q.AcceptedAnswerId = a.Id
    INNER JOIN Users ON Users.Id = q.OwnerUserId
WHERE q.OwnerUserId = a.OwnerUserId
GROUP BY Users.Id, DisplayName
HAVING COUNT(a.Id) > 10
ORDER BY SelfAnswerPercentage DESC

Upvote/Downvote ratio per day of week (more risk on downvotes in weekends?)

SELECT 
    DATENAME(WEEKDAY, CreationDate) AS Day, 
    COUNT(*) AS Amount, 
    SUM(CASE WHEN VoteTypeId = 2 THEN 1 ELSE 0 END) AS UpVotes, 
    SUM(CASE WHEN VoteTypeId = 3 THEN 1 ELSE 0 END) AS DownVotes, 
    (CAST(SUM(CASE WHEN VoteTypeId = 2 THEN 1 ELSE 0 END) AS float) / CAST(SUM(CASE WHEN VoteTypeId = 3 THEN 1 ELSE 0 END) AS float)) AS UpVoteDownVoteRatio
FROM Votes
GROUP BY DATENAME(WEEKDAY, CreationDate)

How many days was I active? (Returns amount of days when you've posted at least one answer, may be useful for another statistics since registrationdate isn't always representative for "user activity").

SELECT COUNT(DISTINCT CONVERT(char(10), CreationDate, 111)) AS days
FROM Posts
WHERE OwnerUserId = ##UserId##

Most controversial posts on the Site

Search Stack Overflow Favorites by Tag Name

SELECT Posts.id as [Post Link], Posts.Tags as [Tagged With]

FROM Votes, Posts

WHERE
     (Votes.PostId=Posts.Id) AND
     (Votes.VoteTypeId = 5) AND
     (Votes.UserId=##User:int##) AND
     (Posts.Tags LIKE '%<##TagName##>%') AND
     (Posts.Title LIKE '%##BodyText##%') AND
     (Posts.Body LIKE '%##TitleText##%');
link|improve this question
4  
Im totally adding a way to have parameters next week – waffles May 15 '10 at 1:24
@waffles Great! How did you build this app anyway ? – Sathya May 15 '10 at 3:46
@Essjaaay I posted a bit of background here: meta.stackoverflow.com/questions/49424/stack-exchange-sandbox – waffles May 15 '10 at 4:10
After I log in, I get an error. I'm user 8, btw. – George Edison May 15 '10 at 6:57
I propose we change this so we do not include query bodies in this post, its too hard to contribute here. Latest drop supports query naming and params. See: cloudexchange.cloudapp.net/stackoverflow/q/467 – waffles May 20 '10 at 2:30
@waffles: nice new feature!! The reason I included raw SQL queries is because I've ranted more than once before when for example stackql was down and the link didn't work while I was more interested in the query itself. True, I can write one myself, but I am not a diehard SQL ninja and I've never worked with TSQL before so it may sometimes take some time :) – Chichiray May 20 '10 at 12:48
1  
FYI, I have started a new "featured query" section cloudexchange.cloudapp.net/stackoverflow/queries which should include most of these – waffles May 25 '10 at 6:19
The highest average score query is more interesting/accurate if you filter out Community Wiki posts (CommunityOwnedDate IS NULL). Otherwise the averages are skewed by fluff answers to fluff questions getting 30k+ views. – Aarobot May 29 '10 at 16:43
@BalusC This question meta.stackoverflow.com/questions/52887/… is referring to your query odata.stackexchange.com/stackoverflow/q/2528, I think. – Mark Hurd Jun 8 '10 at 8:00
Oh nice, thanks @Mark! – Chichiray Jun 8 '10 at 11:23
I'm not convinced about the uncapped rep one. It reckons my uncapped would be more than 1000 less than it actually is. So I presume it must be missing counting something. – Martin Smith Jun 8 '10 at 11:55
1  
@Martin: two possible reasons, the actual bounty rep score cannot be retrieved from the DB (is always calculated as 100 points) and the data dump is always dated from end of from previous month (as of now, the data dates from May 31, 2010, 23:59:59, also see the frontpage: cloudexchange.cloudapp.net ). – Chichiray Jun 8 '10 at 13:19
@Balus - Yep that would explain it. I've only hit the rep cap once so was expecting it to be pretty identical. – Martin Smith Jun 8 '10 at 14:27
@Balus, bounty can be calculated now, have a look at the Votes table – waffles Jun 8 '10 at 22:58
Can you do a query for ratio of post keystrokes to comment keystrokes? The chatterbox ratio? I tried what I thought was the right way to do it, but I think I did it wrong because it just hung until I got the "something is wrong" message. – mmyers Jun 18 '10 at 15:37
show 3 more comments
feedback

18 Answers

How many users can do X?

Screenshot of results

Bear in mind that this only works with StackOverflow.

link|improve this answer
just featured it – waffles Jun 21 '10 at 11:46
feedback

Users with highest accept rate of their answers

The MinAnswers parameter is the minimum number of answers for the users shown. Good values are 50 or 10.

Incidentally, looking at the top users on the list, some of them seem to be gaming the system somehow:

  • User ski: 20 of 21 accepted answers, all of them bounties, many of them useless answers.
  • User Irshad Hussain: 10 of 10 accepted answers, almost all of them on questions asked by user air who has a very similar writing style.
link|improve this answer
I suggest you post specific meta support requests about this, these accounts should be penalized – waffles May 27 '10 at 21:42
I flagged them for moderator attention. – interjay May 27 '10 at 21:56
Nice one! I actually had this query in mind (also with the reason to spot sockpuppet accounts like this!), but I didn't think about writing it anymore. – Chichiray May 27 '10 at 23:44
feedback

Daily voting frequency of Top 200 highest rep users

UpVotesPerDay

User Link                  Reputation Days UpVotes VotesPerDay             
-------------------------- ---------- ---- ------- ------------------- 
Eric Lippert               49208      447  1       0.00223713646532438 
unknown                    25372      364  76      0.208791208791209   
SQLMenace                  21322      690  214     0.310144927536232   
Red Filter                 20765      586  201     0.343003412969283   
:
KennyTM                    45356      208  2741    13.1778846153846    
Marc Gravell               151137     639  8547    13.3755868544601    
Pekka                      52537      263  4151    15.7832699619772    
Daniel Vassallo            34180      209  3321    15.88995215311      

DownVotesPerDay

User Link                  Reputation Days DownVotes VotesPerDay             
-------------------------- ---------- ---- --------- -------------------     
Mark Rushakoff             34783      375  0         0                   
sharptooth                 34226      525  0         0                   
Adam Davis                 28223      673  0         0                   
coobird                    22628      650  0         0                   
:
Tom Hawtin - tackline      28912      663  1939      2.92458521870287    
brian d foy                35890      652  2194      3.36503067484663    
David Dorward              41841      648  2400      3.7037037037037     
Neil Butterworth           83090      508  3476      6.84251968503937    

Reputation

User Link       Reputation Days   Up Down UpPerDay           DownPerDay     
------------------------------------------------------------------------------
Jon Skeet       190431     641  6213  282  9.69266770670827  0.4399375975039     
Marc Gravell    151137     639  8547  456 13.3755868544601   0.713615023474178   
cletus          116287     649  2062  386  3.17719568567026  0.594761171032357   
Alex Martelli   115891     431   501   32  1.16241299303944  0.074245939675174   
tvanfosson      113772     651  3793  267  5.82642089093702  0.410138248847926   
JaredPar        102228     639  4412   62  6.90453834115806  0.0970266040688576  
Greg Hewgill     96521     689  3227  293  4.68359941944848  0.425253991291727   
paxdiablo        89650     651  1392  677  2.13824884792627  1.03993855606759    
Mehrdad Afshari  89075     603  1676  669  2.77943615257048  1.10945273631841    
S.Lott           87778     652  5403  543  8.28680981595092  0.832822085889571   
link|improve this answer
21  
I wonder who got the honour of being upvoted by Eric Lippert! – Daniel Vassallo Jul 18 '10 at 21:29
feedback

Most-repeated comments on Meta:

number text 
------ ---------------------------------------------------------------------------------------------------------------------------
16      Yes ` ` ` ` ` ` 
12      
12      (-1) for the reasons in my answer. 
11      belongs on meta. 
 8      belongs on meta.stackoverflow.com 
 7      LOL ` ` ` ` ` ` 
 5      (-1) for the reasons in my response. 
 5      belongs on meta 
 5      FTFY! ` ` ` ` ` ` 
 5      No ` ` ` ` ` ` ` ` 
 5      Which browser are you using? 
 5      Why the downvote? 
 4      *facepalm* 
 4      [citation needed] 
 4      _` ` ` ` ` ` ` `_ 
 4      ` ` ` ` ` ` ` ` 
 4      http://meta.stackexchange.com/questions/4/list-of-stackexchange-sites 
 4      I agree. Definitely SOFU's fault. 
 4      Link or it didn't happen 
 4      Oh Crap. Temporal Causality loop. 
 4      see also http://meta.stackoverflow.com/questions/42544/provide-some-kind-of-on-the-fly-translation-e-g-french-to-english 
 4      See: http://meta.stackoverflow.com/questions/10369/what-was-stack-overflow-built-with 
 4      See: http://meta.stackoverflow.com/questions/8401/where-can-i-ask-questions-that-arent-programming-questions 
 4      This belongs on meta.stackoverflow.com 
 4      Why? ` ` ` ` ` ` 

(the second one is some unicode emptiness)


Most-repeated comments on super User

number text 
------ ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 
72     Belongs on superuser.com                                                                                                                                                                                                                                                                                                     
39     You're welcome.                                                                                                                                                                                                                                                                                                              
33     I've proposed a Stack Exchange-based Apple site that this question would be perfect for. Just go  [here](http://area51.stackexchange.com/proposals/151/apple?referrer=EmsxHuwirbI%3d) and click "Follow" to help get the site up and running.                                                                                
29     what operating system?                                                                                                                                                                                                                                                                                                       
29     you're more than welcome.                                                                                                                                                                                                                                                                                                    
28     belongs on superuser                                                                                                                                                                                                                                                                                                         
20     Belongs on SuperUser.                                                                                                                                                                                                                                                                                                        
18     **Avoid asking questions that are subjective, argumentative, or require extended discussion. This is not a discussion board, this is a place for questions that can be answered!**                                                                                                                                           
17     What OS are you using?                                                                                                                                                                                                                                                                                                       
14     Thank you very much!                                                                                                                                                                                                                                                                                                         
13     What operating system are you using?                                                                                                                                                                                                                                                                                         
13     You're more than welcome :)                                                                                                                                                                                                                                                                                                  
12     This is a website support issue. Not in the scope of SU.                                                                                                                                                                                                                                                                     
11     awesome, thanks!                                                                                                                                                                                                                                                                                                             
11     Sorry, but shopping type questions are discouraged on SU. http://meta.stackoverflow.com/questions/36056/not-the-shopping                                                                                                                                                                                                     
11     Thanks, question answered!                                                                                                                                                                                                                                                                                                   
11     Which version of Windows?                                                                                                                                                                                                                                                                                                    
10     Should be community wiki.                                                                                                                                                                                                                                                                                                    
10     thank you very much                                                                                                                                                                                                                                                                                                          
10     why the downvote?                                                                                                                                                                                                                                                                                                            
10     You're most welcome.                                                                                                                                                                                                                                                                                                         
9      This belongs on SuperUser.com                                                                                                                                                                                                                                                                                                
9      You're most welcome :)                                                                                                                                                                                                                                                                                                       
9      You're most welcome!                                                                                                                                                                                                                                                                                                         
8      Hello, welcome to Super User. Your question has been migrated here, where it is more adapted. To regain ownership over your question, you should create an account here, and associate it with your Stack Overflow account in user options.                                                                                  
8      Outside the scope of SU. Try asking on one of the sites listed here: http://meta.stackexchange.com/questions/4                                                                                                                                                                                                               
8      Should be community wiki                                                                                                                                                                                                                                                                                                     
8      superuser is for computer hardware and software related questions only. Websites are considered off topic. Please read the FAQ (http://superuser.com/faq).                                                                                                                                                                   
8      Thank you for your answers!                                                                                                                                                                                                                                                                                                  
8      This is not computer related. Please check the FAQ for more information.                                                                                                                                                                                                                                                     
8      Which operating system?                                                                                                                                                                                                                                                                                                      
8      You're very welcome!                                                                                                                                                                                                                                                                                                         
8      You're welcome!                                                                                                                                                                                                                                                                                                              
7      I stand corrected.                                                                                                                                                                                                                                                                                                           
7      Should be a wiki.                                                                                                                                                                                                                                                                                                            
7      thanks for the link.                                                                                                                                                                                                                                                                                                         
7      This belongs on superuser.                                                                                                                                                                                                                                                                                                   
7      What version are you using?                                                                                                                                                                                                                                                                                                  
7      What version of windows?                                                                                                                                                                                                                                                                                                     
6      And http://superuser.com/questions/120461/transfer-time-of-a-cylinder                                                                                                                                                                                                                                                        
6      Community Wiki.                                                                                                                                                                                                                                                                                                              
6      Excellent, thanks!                                                                                                                                                                                                                                                                                                           
6      for what operating system?                                                                                                                                                                                                                                                                                                   
6      Glad I could help.                                                                                                                                                                                                                                                                                                           
6      Hello, welcome to Super User. Please review the FAQ (http://superuser.com/faq) to learn more about how this site works. This site is not a discussion board, this is a place for questions to be asked and answered. As such, you should not post a new answer if what you want to say doesn't actually answer the question. 
6      How is this programming related?                                                                                                                                                                                                                                                                                             
6      http://superuser.com                                                                                                                                                                                                                                                                                                         
6      I've raised http://meta.stackoverflow.com/questions/45439/what-to-do-with-which-linux-distro-for-my-old-pc-questions-of-super-user/47075#47075 to discuss creating a faq about linux distributions. Please add any comments you have. Thanks.                                                                                
6      Ok great thanks!                                                                                                                                                                                                                                                                                                             
6      on what operating system?

Obviously people on Super User are mainly:

  • Friendly
  • Copy-pasting their "close explanation"
  • Asking for operating system
  • (and also a lot of "belongs on SU", thanks to SO migrations)

Special award for the anonymous person who is silently advertising his Apple proposal.

link|improve this answer
Now the game is: "find who says these comments the most". I start with the (-1) ones: devinb! – Gnoupi Jul 7 '10 at 10:53
2  
On Stack Overflow: odata.stackexchange.com/stackoverflow/q/6358/…. Lol "Is this homework?" – KennyTM Jul 7 '10 at 11:32
feedback

Main query: Quickest badge earners (OBOE fixed, augmented with "days since 1st" column).


Legendary

These users became {Legendary} on 2009-12-06, presumably the day the badge is first introduced.

User Link        DaysMembership
---------------- --------------
Alex Martelli    226
Reed Copsey      298
Mehrdad Afshari  399
Marc Gravell     434
JaredPar         435
Jon Skeet        437
cletus           444
tvanfosson       447

Excluding the above users, these are the Top 10 quickest:

User Link            DaysMembership 
-------------------- -------------- 
polygenelubricants   192            
KennyTM              208            
Pekka                241            
Pascal MARTIN        262            
BalusC               266            
"Neil Butterworth"   329            
Pascal Thivent       429            
tvanfosson           447            
Mark Byers           457            
paxdiablo            495            
link|improve this answer
2  
Nice one. In my case there should however be 75 days off since my first post was 75 days after registration :P – Chichiray Jun 6 '10 at 19:50
1  
@BalusC: But the Epic/Legendary badges weren't introduced until fairly recently, so the dates are likely off for everyone else. – mmyers Jun 9 '10 at 18:22
The counts may be off by a day. Either that, or something's up with Fanatic: a ton of people earned it after being a member for only 99 days according to the query. – James McNellis Jun 21 '10 at 3:19
Enthusiast reports 29 days instead of 30. – ChrisF Jun 21 '10 at 11:14
@mmyers: they were introduced a few days before I hit the Epic, so it's still on time :) Mortarboard however was "too late". According to my /reputation page I already hit it on 2nd day of my SO activity. – Chichiray Jul 6 '10 at 15:49
@tvanfosson appears in both lists... – davidsleeps Dec 12 '11 at 22:21
feedback

Country with the best average Reputation, and who leads the reputations's Country:

A ranking where Jon Skeet is only third !

Rank Country         NbCountryUsers TotalReputation RepsByUser User Link         LeaderReputation 
---- --------------- -------------- --------------- ---------- ----------------- ----------------
1    Switzerland     807            912078          1130       marc_s            124062           
2    Germany         3467           3911234         1128       Pekka             116973           
3    United Kingdom  9643           9286843         963        Jon Skeet         307197           
4    New Zealand     752            709194          943        Greg Hewgill      145572           
5    France          1886           1728427         916        Darin Dimitrov    190330           
6    Bulgaria        267            238374          892        Bozho             109221           
7    Israel          783            682970          872        Eli Bendersky     35857            
8    United States   34826          30108380        864        Marc Gravell      226866           
9    Greece          328            272541          830        kgiannakakis      38040            
10   Australia       3261           2699033         827        Mitch Wheat       88035  
link|improve this answer
feedback

Find people on Stack Overflow who also work for your company.

I found a few people who work down the hall from me. Interesting stuff if you work at a larger company.

link|improve this answer
feedback

One query I found interesting is High Standards - it shows users that upvote relatively rarely in comparison to their reputation - so they either have high standards for upvoting or forgot about the upvote button at some point.

Excerpt with the first 10 users (using MinRep=10000, MinUpvotes=0):

User Link              Ratio % Rep    + Votes - Votes 
---------------------- ------- ------ ------- ------- 
Eric Lippert           246000  49208  1       19      
Will Hartung           4628.13 14815  31      3       
gimel                  4059.46 15025  36      1       
unknown                3294.81 25372  76      29      
Guffa                  2835.35 56141  197     32      
Alex Martelli          2308.57 115891 501     32      
AndreyT                1994.12 30512  152     200     
CMS                    1875.68 83281  443     5       
John Feminella         1870.67 38913  207     8       
shahkalpesh            1821.43 10200  55      12
link|improve this answer
feedback

Most common question titles on Stack Overflow:

Title                           Count 
------------------------------- ----- 
regular expression              33    
regular expression help         28    
help with sql query             21    
mysql query help                19    
jquery selector                 16    
sql query problem               15    
jquery selector question        14    
database design question        14    
regular expression question     13    
help with regular expression    13    
mysql query problem             12    
what's wrong with this code?    12    
android application development 12    

Mostly they seem related to magical string selectors of some kind - regular expressions, SQL queries, and jQuery selectors.

link|improve this answer
3  
What's wrong with this code?, nice, nice.. – Chichiray Feb 11 '11 at 12:06
feedback

Percentage of questions with accepted answers on top 200 tags:

Tag                    TotalQuestion TotalAccepted Percentage 
---------------------- ------------- ------------- ---------- 
generics               2795          2313          82         
string-manipulation    1606          1316          81         
reflection             2257          1789          79         
tsql                   4299          3420          79         
string                 4068          3211          78         
arrays                 4625          3618          78         
regex                  8796          6862          78         
...
android                11134         5727          51         
pdf                    2114          1058          50         
server                 1704          820           48         
facebook               2150          839           39     
link|improve this answer
feedback

Here are some queries that interested me:

link|improve this answer
1  
Nice queries! But .. Hey, I wasn't for 255 days continuously active! I registered one and half month before I actually started to post my first answer ;) – Chichiray May 26 '10 at 18:16
@BalusC: yes, I know that, which is why I pushed for an official Last 30 Days top users ladder. I'll figure out how to write the query soon enough, or you can just write it and I'll learn from that. – polygenelubricants May 26 '10 at 18:22
1  
re: badge earners by quickness, we are missing dates on the badge table, already committed a fix will pick it up with the next data dump in a few days – waffles May 27 '10 at 21:39
@waffles: make me an admin =) – polygenelubricants May 28 '10 at 9:25
feedback

Great mystery

This query will let you see the question which have no answer with a positive score and at least 5 up vote.

http://odata.stackexchange.com/stackoverflow/s/414/great-mystery-badge

This is a query I made for my badge proposition

http://meta.stackoverflow.com/questions/102/additional-badge-ideas/58379#58379

link|improve this answer
feedback

Because Votes don't have times at the moment I looked at Votes per time of day of Posts, and per weekday:

SO Weekday Hours Hour of week
- Accepted Weekday Hours Hour of week

MSO Weekday Hours Hour of week

Analysis: SO: It is best to ask questions in the 23 hour of the (UTC?) day on a Tuesday, but any work day will do. Asking a question in the 7 hour of Sunday and you're 23% (day) or 60% (hour) more likely to get a down vote.

Answers are much more uniform, both by day and by time of day of post.

MSO: Totally different character (as expected) -- the worst time to ask is the 23 hour, on a Friday (of course) and the best time is the 18 hour on a Sunday. You're 58.5% (day) or 85.4% (hour) more likely to get a down vote at the former compared to the latter.

Answers on Meta are best posted at the 21 hour of Friday, and most likely to receive down votes at the 0 hour of Thursday.

EDIT: Seeing as I described the best and worst times as if they were hours of weekdays, I have included that actual query. So, in fact the best hour for SO is 23 Thursday for Q and 23 Wednesday for A and the worst is 7 Sunday for Q and 1 Saturday for A.

Meta really has too few downvotes to break them down to hours of the week, but in any case its best is 4 Sunday for Q and 8 Monday for A, and its worst is 3 Thursday for Q and 12 Sunday for A.

EDIT: Added SO accepted answer analysis. Note that the latest monthly results have changed the analysis above so SO, and MSO, behaviour hasn't settled down completely yet.

link|improve this answer
That are interesting stats. – Chichiray Jun 25 '10 at 21:57
feedback

Hey, that's neat!

Here are my top tags:

2 of my comments got 6 upvotes... completely unexpected.

link|improve this answer
Notice that I still have a ways to go before I get my wxWidgets badge! – George Edison May 15 '10 at 2:00
Commenting is easy... cloudexchange.cloudapp.net/stackoverflow/q/226 – mmyers May 15 '10 at 5:36
3  
@mmyers: you pundit!!! – Chichiray May 15 '10 at 14:21
feedback

(These are just concept queries only for now; it should probably be a comment, but since this is CW I posed it as an "answer" -- everyone is free to take this and actually run with it. If no one picks it up, I'm sure I'll learn enough SQL to be able to write these queries myself eventually.)

Among all votes cast, ever, how many percent were cast within 5 minutes of the question being posted? Within an hour? Within a day? A week? A month? Six months? Etc.

(It seems that the generally accepted hypothesis is that most votes happens in the very early stage of a question's life, so it's good to see this supported by data)

Which non-CW answers continuously trickle upvotes days, weeks, months after they're written?

I'd love to analyze what I call "legacy" answers look like, what the questions are usually about, etc. (because yes, I'd like to have as many of those of my own as possible).

link|improve this answer
I have this for your first query: odata.stackexchange.com/stackoverflow/q/7920/… . No logarithmic scale though, and I probably did something wrong because I have many votes before their posts were created. It can look better when the data dump offers visualization (which I'm considering adding myself). – Kobi Jul 21 '10 at 4:54
I noticed Money for Jam and My Money for Jam queries today. Those seem to comply this request. Very interesting data indeed :) – Chichiray Jul 29 '10 at 23:03
1  
Those were clickable :) Sorry for formatting as code, I should know better: meta.stackoverflow.com/questions/48560/… – Chichiray Jul 30 '10 at 12:02
feedback

Here's a query to retrieve the post ids of your favourites.

link|improve this answer
It's showing the users with the most favorites. – Matthew Crumley Jul 29 '10 at 5:36
Fixed . . . . . – Simon Brown Jul 29 '10 at 14:26
feedback

Search your Stack Overflow Favorites matching some [tag]

When you have hundreds or thousands of Favorites on Stack Overflow, often you only want to find those matching a certain tag. The new search engine eliminated the ability to search using infavortes: tag, so this offers a near-replacement for that functionality as long as you only need to search on a tag name.

link|improve this answer
feedback

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged