This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CREATE OR REPLACE VIEW sabermetrics_batting AS | |
| SELECT | |
| batting.*, | |
| -- PA - Plate Appearances | |
| (batting.AB + batting.BB + batting.HBP + batting.SF + batting.SH) as PA, | |
| -- BB% - Walk Percentage (http://www.fangraphs.com/library/offense/rate-stats/) | |
| round((batting.BB / (batting.AB + batting.BB + batting.HBP + batting.SF + batting.SH)), 3) as BBpct, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Returns the total number of elements that match a given criteria. | |
| * | |
| * @param ElementCriteriaModel $criteria An element criteria model that defines the parameters for the elements | |
| * we should be counting. | |
| * | |
| * @return int The total number of elements that match the criteria. | |
| */ |
OlderNewer