So I added another game database access feature last night, but didn't have time to explain it fully. It's simultaneously the easiest one for me to make, the most freeform, and the most user-unfriendly. I'm allowing you to
write your own SQL queries to pull out information. I've limited what it allows, so I don't think any of you tricksters can use this to modify or delete information.
If you know much about SQL, you'll probably be able to figure out enough to start testing things out by doing some simple "SELECT * FROM" statements using the tables
Fake_HardwareWeekly
Fam_HardwareWeekly
MC_HardwareWeekly
(
Hey Josh, you say.
Wouldn't it have been better to have all the weekly hardware in one table, with a field identifying which tracker it's from? Yeah, but out-of-practice me early last year without such large intentions for this thing didn't think so, so there it is. Maybe I'll fix that sometime, but it will have to come beside a change for all the various files made to read from it the current way.)
HardwareInfo
HardwareShipments
SoftwareInfo
SoftwareWeekly
Here are some things one could use SQL to do, though.
All the weeks where Famitsu has PS2 going over 100K?
SELECT Week, Units FROM Fam_HardwareWeekly WHERE System='PS2' AND Units>100000
All the weeks where Media Create has DSL under 100K?
SELECT Week, Units FROM MC_HardwareWeekly WHERE System='DSL' AND Units<100000
All the Wii software launched before April 4, 2007?
SELECT * FROM SoftwareInfo where Platform='Wii' and ReleaseDate<'2007-04-04' ORDER BY ReleaseDate ASC
See what colors graphs use for Microsoft consoles?
SELECT * FROM HardwareInfo WHERE Manufacturer='Microsoft' and SystemType='console'
See which games have the biggest first weeks, among what's currently in the database?
SELECT ReleaseDate as 'Release Date',Week,Tracker,Rank as 'Weekly Rank',SoftwareWeekly.GameID as 'Game ID',TitleEnglish,TitleJapanese,Publisher,Platform,SalesWeekly as 'Sales Weekly' FROM SoftwareWeekly, SoftwareInfo WHERE SalesWeekly=SalesLTD AND SoftwareWeekly.GameID = SoftwareInfo.GameID GROUP BY SoftwareWeekly.GameID ORDER BY SalesWeekly DESC
Unfortunately, unlike the other tools on my site, this one doesn't allow you to share an URL to share a result. SQL queries can get pretty long, and doing things the URL way would limit length.