home / football

form_record

5 rows where team_id = 327

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: pts_avg, gf_avg, win_pct, loss_pct, 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
86185 East Turkestan 327 2019-10-19 5 3.0 8.0 2.0     1.0 0.0 0.0   2026-06-07 07:03:15.442708 2026-06-07 07:03:15.442708 1   International Results CSV 1 form://327/2019-10-19/5
86603 East Turkestan 327 2019-12-14 5 1.5 4.0 2.5     0.5 0.0 0.5   2026-06-07 07:03:15.484028 2026-06-07 07:03:15.484028 1   International Results CSV 1 form://327/2019-12-14/5
96863 East Turkestan 327 2025-07-02 5 1.0 3.0 2.3333333333333335     0.3333333333333333 0.0 0.6666666666666666   2026-06-07 07:03:17.129237 2026-06-07 07:03:17.129237 1   International Results CSV 1 form://327/2025-07-02/5
96865 East Turkestan 327 2025-07-03 5 1.5 3.75 2.75     0.5 0.0 0.5   2026-06-07 07:03:17.129442 2026-06-07 07:03:17.129442 1   International Results CSV 1 form://327/2025-07-03/5
96867 East Turkestan 327 2025-07-04 5 1.2 3.0 3.2     0.4 0.0 0.6   2026-06-07 07:03:17.129646 2026-06-07 07:03:17.129646 1   International Results CSV 1 form://327/2025-07-04/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 1631.865ms