home / mad_dogs

Bunny Coefficient (Tail-End Killers)

1 row where player_id = 17

✎ View and edit SQL

This data as json, CSV (advanced)

id ▼ player_id season cvr wickets bc
10 V. Mehta 17 2025 69 20 3.45

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

CREATE TABLE bunny_coefficient (
        id          INTEGER PRIMARY KEY AUTOINCREMENT,
        player_id   INTEGER NOT NULL REFERENCES players(id),
        season      INTEGER NOT NULL,
        cvr         INTEGER,
        wickets     INTEGER,
        bc          REAL,
        UNIQUE(player_id, season)
    );
Powered by Datasette · Queries took 11.927ms