home / mad_dogs

Notable Partnerships

0 rows where player1_id = 25

✎ View and edit SQL

This data as json

0 records

CREATE TABLE partnerships (
        id              INTEGER PRIMARY KEY AUTOINCREMENT,
        season          INTEGER NOT NULL,
        wicket          INTEGER,
        runs            INTEGER,
        player1_id      INTEGER REFERENCES players(id),
        player1_runs    TEXT,
        player2_id      INTEGER REFERENCES players(id),
        player2_runs    TEXT,
        opponent        TEXT,
        competition     TEXT,
        all_time_record INTEGER DEFAULT 0  -- 1 if noted as all-time record
    );
Powered by Datasette · Queries took 17.374ms