form_record
7 rows where team_id = 287
This data as json, CSV (advanced)
Suggested facets: gf_avg, ga_avg, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 68096 | Saint Pierre and Miquelon 287 | 2010-09-22 | 5 | 0.0 | 0.0 | 11.0 | 0.0 | 0.0 | 1.0 | 2026-06-07 07:03:12.441248 | 2026-06-07 07:03:12.441248 | 1 | International Results CSV 1 | form://287/2010-09-22/5 | ||||
| 68116 | Saint Pierre and Miquelon 287 | 2010-09-25 | 5 | 0.0 | 0.0 | 9.0 | 0.0 | 0.0 | 1.0 | 2026-06-07 07:03:12.443270 | 2026-06-07 07:03:12.443270 | 1 | International Results CSV 1 | form://287/2010-09-25/5 | ||||
| 68138 | Saint Pierre and Miquelon 287 | 2010-09-28 | 5 | 0.0 | 0.0 | 9.333333333333334 | 0.0 | 0.0 | 1.0 | 2026-06-07 07:03:12.445505 | 2026-06-07 07:03:12.445506 | 1 | International Results CSV 1 | form://287/2010-09-28/5 | ||||
| 72355 | Saint Pierre and Miquelon 287 | 2012-09-22 | 5 | 0.0 | 0.0 | 10.25 | 0.0 | 0.0 | 1.0 | 2026-06-07 07:03:13.161599 | 2026-06-07 07:03:13.161599 | 1 | International Results CSV 1 | form://287/2012-09-22/5 | ||||
| 72367 | Saint Pierre and Miquelon 287 | 2012-09-24 | 5 | 0.0 | 0.0 | 10.2 | 0.0 | 0.0 | 1.0 | 2026-06-07 07:03:13.162779 | 2026-06-07 07:03:13.162779 | 1 | International Results CSV 1 | form://287/2012-09-24/5 | ||||
| 72387 | Saint Pierre and Miquelon 287 | 2012-09-26 | 5 | 0.0 | 0.2 | 10.2 | 0.0 | 0.0 | 1.0 | 2026-06-07 07:03:13.164734 | 2026-06-07 07:03:13.164734 | 1 | International Results CSV 1 | form://287/2012-09-26/5 | ||||
| 72402 | Saint Pierre and Miquelon 287 | 2012-09-28 | 5 | 0.0 | 0.4 | 12.0 | 0.0 | 0.0 | 1.0 | 2026-06-07 07:03:13.166291 | 2026-06-07 07:03:13.166291 | 1 | International Results CSV 1 | form://287/2012-09-28/5 |
Advanced export
JSON shape: default, array, newline-delimited, object
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)
);