Very nice Glenn!
Last time we spoke I think you were running JCapper on a Mac under a Windows Emulator, no? Been thinking about doing that myself.
One sql command that I've been tinkering with is AVG... which can be used to compare a value in your sql expression against the average numeric value found in a single column for every record in the table.
Not knowing (or even caring) what the average value in the table is for F07, the following sql expression returns all records in the table where numeric value for F07 is at least 25 points higher than the average:
query start: 4/28/2010 10:49:09 PM query end: 4/28/2010 10:49:25 PM elapsed time: 16 seconds ~ Data Window Settings: 999 Divisor Odds Cap: None ~ SQL: SELECT * FROM STARTERHISTORY WHERE (VALF07 - 25) >= (SELECT AVG(VALF07) FROM STARTERHISTORY) ~ ~ Data Summary Win Place Show Mutuel Totals 5010.70 4765.80 4531.90 Bet -4970.00 -4970.00 -4970.00 Gain 40.70 -204.20 -438.10 ~ Wins 600 1024 1326 Plays 2485 2485 2485 PCT .2414 .4121 .5336 ~ ROI 1.0082 0.9589 0.9119 Avg Mut 8.35 4.65 3.42
-jp
.
|