Going along with this idea, I've created a sandbox for the monthly SO data dump. Eventually it will have an integrated SO stat framework that I've been working on for the past few days. It runs on MySQL 5, so make sure you use proper syntax! The only real restriction that I've placed on it as of yet is that all returns are limited to 500 results, mainly to prevent memory errors. Feel free to run some queries in 500 result sets if necessary. Also, it is read only.
The database can be found here, http://statoverflow.com/sandbox/. You must have javascript enabled. I also recommend you don't return all fields using * since their display is limited on the visual style, and this will make them almost impossible to read.
If you find any errors or mistakes, let me know. I'm still rapidly developing this so there's bound to be a few -- or several. I'll fix them ASAP.
An example query is:
SELECT Title, PostTypeId, Score, ViewCount FROM posts
WHERE Title != "" LIMIT 200 ORDER BY Score DESC
You can sort items ASC or DESC by clicking the respective field titles, and you may do live search upon any sorted column.
If you have ideas or suggestions let me know. I may or may not already have similar things in the works. Soon I will be integrating graphs and charts so you can easily model your data to use elsewhere.
Schema
There are currently the five default tables:
posts, users, comments, votes, badges
The field titles are verbatim from the dump, and have the same casing.
Examples: PostTypeId, Title, LastEditDate, etc.
All times have already been converted to Unix Stamps
I found a good wiki here, specifying exactly what the tables are. http://meta.stackoverflow.com/questions/2677/anatomy-of-a-data-dump
I plan on adding more tables shortly to make things easier, and will post those updates here.