elo_record
12 rows where competition_id = 21
This data as json, CSV (advanced)
Suggested facets: team_id, date, source_match_id, created_at, updated_at, created_at (date), updated_at (date)
| elo_id ▼ | team_id | date | rating | k_factor | delta | source_match_id | is_tournament | competition_id | created_at | updated_at | created_by_run_id | updated_by_run_id | source_id | source_raw_key |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 1315 | Guernsey 15 | 1921-03-28 | 1629.6306382289456 | 40.0 | 8.604039385295891 | 658 | 1 | Peace Cup 21 | 2026-06-07 07:00:12 | 2026-06-07 07:00:12 | 1 | International Results CSV 1 | elo://658/home | |
| 1316 | Alderney 16 | 1921-03-28 | 1387.554005104855 | 40.0 | -8.604039385295891 | 658 | 1 | Peace Cup 21 | 2026-06-07 07:00:12 | 2026-06-07 07:00:12 | 1 | International Results CSV 1 | elo://658/away | |
| 1445 | Guernsey 15 | 1922-04-17 | 1618.5956715390523 | 40.0 | 7.799491084359715 | 723 | 1 | Peace Cup 21 | 2026-06-07 07:00:12 | 2026-06-07 07:00:12 | 1 | International Results CSV 1 | elo://723/home | |
| 1446 | Alderney 16 | 1922-04-17 | 1356.6781015185813 | 40.0 | -7.799491084359715 | 723 | 1 | Peace Cup 21 | 2026-06-07 07:00:12 | 2026-06-07 07:00:12 | 1 | International Results CSV 1 | elo://723/away | |
| 1601 | Guernsey 15 | 1923-04-02 | 1640.0812846476567 | 40.0 | 6.7614218730584525 | 801 | 1 | Peace Cup 21 | 2026-06-07 07:00:13 | 2026-06-07 07:00:13 | 1 | International Results CSV 1 | elo://801/home | |
| 1602 | Alderney 16 | 1923-04-02 | 1349.916679645523 | 40.0 | -6.7614218730584525 | 801 | 1 | Peace Cup 21 | 2026-06-07 07:00:13 | 2026-06-07 07:00:13 | 1 | International Results CSV 1 | elo://801/away | |
| 1791 | Guernsey 15 | 1924-04-21 | 1624.1702704565148 | 40.0 | -34.70529553639835 | 896 | 1 | Peace Cup 21 | 2026-06-07 07:00:13 | 2026-06-07 07:00:13 | 1 | International Results CSV 1 | elo://896/home | |
| 1792 | Alderney 16 | 1924-04-21 | 1366.9592522968182 | 40.0 | 34.70529553639835 | 896 | 1 | Peace Cup 21 | 2026-06-07 07:00:13 | 2026-06-07 07:00:13 | 1 | International Results CSV 1 | elo://896/away | |
| 1981 | Guernsey 15 | 1925-03-12 | 1606.1418805954827 | 40.0 | 8.375422393335384 | 991 | 1 | Peace Cup 21 | 2026-06-07 07:00:13 | 2026-06-07 07:00:13 | 1 | International Results CSV 1 | elo://991/home | |
| 1982 | Alderney 16 | 1925-03-12 | 1358.5838299034829 | 40.0 | -8.375422393335384 | 991 | 1 | Peace Cup 21 | 2026-06-07 07:00:13 | 2026-06-07 07:00:13 | 1 | International Results CSV 1 | elo://991/away | |
| 2133 | Guernsey 15 | 1925-12-10 | 1636.1442698930587 | 40.0 | 6.697762499281453 | 1067 | 1 | Peace Cup 21 | 2026-06-07 07:00:13 | 2026-06-07 07:00:13 | 1 | International Results CSV 1 | elo://1067/home | |
| 2134 | Alderney 16 | 1925-12-10 | 1344.131276809162 | 40.0 | -6.697762499281453 | 1067 | 1 | Peace Cup 21 | 2026-06-07 07:00:13 | 2026-06-07 07:00:13 | 1 | International Results CSV 1 | elo://1067/away |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE elo_record (
elo_id INTEGER NOT NULL,
team_id INTEGER NOT NULL,
date DATE NOT NULL,
rating FLOAT NOT NULL,
k_factor FLOAT NOT NULL,
delta FLOAT,
source_match_id INTEGER,
is_tournament BOOLEAN NOT NULL,
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_elo_record PRIMARY KEY (elo_id),
CONSTRAINT fk_elo_record_team FOREIGN KEY(team_id) REFERENCES team (team_id),
CONSTRAINT fk_elo_record_match FOREIGN KEY(source_match_id) REFERENCES match (match_id),
CONSTRAINT fk_elo_record_source FOREIGN KEY(source_id) REFERENCES data_source (source_id),
CONSTRAINT fk_elo_record_competition FOREIGN KEY(competition_id) REFERENCES competition (competition_id)
);