home / football

form_record

2 rows where team_id = 336

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: date (date), created_at (date), updated_at (date)

form_id ▼ team_id date window_matches pts_avg gf_avg ga_avg xg_for_avg xg_against_avg win_pct draw_pct loss_pct competition_id created_at updated_at created_by_run_id updated_by_run_id source_id source_raw_key
96902 Marshall Islands 336 2025-08-14 5 0.0 0.0 4.0     0.0 0.0 1.0   2026-06-07 07:03:17.133347 2026-06-07 07:03:17.133347 1   International Results CSV 1 form://336/2025-08-14/5
96905 Marshall Islands 336 2025-08-16 5 0.0 1.0 3.5     0.0 0.0 1.0   2026-06-07 07:03:17.133555 2026-06-07 07:03:17.133555 1   International Results CSV 1 form://336/2025-08-16/5

Advanced export

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

CSV options:

CREATE TABLE form_record (
            form_id INTEGER NOT NULL,
            team_id INTEGER NOT NULL,
            date DATE NOT NULL,
            window_matches INTEGER NOT NULL,
            pts_avg FLOAT NOT NULL,
            gf_avg FLOAT NOT NULL,
            ga_avg FLOAT NOT NULL,
            xg_for_avg FLOAT,
            xg_against_avg FLOAT,
            win_pct FLOAT,
            draw_pct FLOAT,
            loss_pct FLOAT,
            competition_id INTEGER,
            created_at DATETIME NOT NULL,
            updated_at DATETIME NOT NULL,
            created_by_run_id INTEGER,
            updated_by_run_id INTEGER,
            source_id INTEGER NOT NULL,
            source_raw_key VARCHAR(512),
            CONSTRAINT pk_form_record PRIMARY KEY (form_id),
            CONSTRAINT fk_form_record_team FOREIGN KEY(team_id) REFERENCES team (team_id),
            CONSTRAINT fk_form_record_source FOREIGN KEY(source_id) REFERENCES data_source (source_id),
            CONSTRAINT fk_form_record_competition FOREIGN KEY(competition_id) REFERENCES competition (competition_id)
        );
Powered by Datasette · Queries took 1291.829ms