mysql> select throws, count(playerid) as 'count'Batter handedness in 2005:
> from PlayerInfo
> where yearplayed=2005 and positionid='P'
> group by throws;
+--------+-------+
| throws | count |
+--------+-------+
| L | 123 |
| R | 260 |
+--------+-------+
2 rows in set (0.02 sec)
mysql> select bats, count(playerid) as 'count'Note that this is all players, both ichi-gun and ni-gun, so I think that the data you want is a little more refined than this.
> from PlayerInfo
> where yearplayed=2005 and positionid in ('C','IF','OF')
> group by bats;
+------+-------+
| bats | count |
+------+-------+
| L | 145 |
| R | 275 |
| S | 22 |
+------+-------+
3 rows in set (0.02 sec)
This is a site about Pro Yakyu (Japanese Baseball), not about who the next player to go over to MLB is. It's a community of Pro Yakyu fans who have come together to share their knowledge and opinions with the world. It's a place to follow teams and individuals playing baseball in Japan (and Asia), and to learn about Japanese (and Asian) culture through baseball.
It is my sincere hope that once you learn a bit about what we're about here that you will join the community of contributors.
Michael Westbay
(aka westbaystars)
Founder
I feel that mostly left handed pitchers' ERAs are higher than right hander pithcers', especially this year.
Also, how many NPB pitchers' style of pitching is like Watanabe from Lotte (I feel that is less)?