home / mad_dogs

Appearances

1 row where player_id = 28

✎ View and edit SQL

This data as json, CSV (advanced)

id ▼ player_id season games
28 S. Lakshmaiah 28 2025 6

Advanced export

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

CSV options:

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 10.312ms