home / mad_dogs

Appearances

0 rows where player_id = 199

✎ View and edit SQL

This data as json

0 records

CREATE TABLE appearances (
        id          INTEGER PRIMARY KEY AUTOINCREMENT,
        player_id   INTEGER NOT NULL REFERENCES players(id),
        season      INTEGER NOT NULL,
        games       INTEGER NOT NULL,
        UNIQUE(player_id, season)
    );
CREATE INDEX idx_appearances     ON appearances(player_id);
Powered by Datasette · Queries took 12.086ms