Bowling Statistics
0 rows where player_id = 27
This data as json
0 records
CREATE TABLE bowling_stats (
id INTEGER PRIMARY KEY AUTOINCREMENT,
player_id INTEGER NOT NULL REFERENCES players(id),
season INTEGER NOT NULL,
overs REAL,
maidens INTEGER,
runs_conceded INTEGER,
wickets INTEGER,
average REAL,
economy REAL,
balls_per_wkt REAL,
best_figures TEXT, -- e.g. "7/32"
UNIQUE(player_id, season)
);
CREATE INDEX idx_bowling_player ON bowling_stats(player_id);