home / mad_dogs

Bunny Coefficient (Tail-End Killers)

1 row where player_id = 6

✎ View and edit SQL

This data as json, CSV (advanced)

id ▼ player_id season cvr wickets bc
6 M. Jadhav 6 2025 74 17 4.35

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.698ms