elo_record
8 rows where competition_id = 92
This data as json, CSV (advanced)
Suggested facets: team_id, date, source_match_id, created_at, updated_at, date (date), 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 27477 | Hong Kong 134 | 1983-07-18 | 1510.6692188622476 | 40.0 | -0.7358026238596267 | 13739 | 1 | Great Wall Cup 92 | 2026-06-07 07:00:32 | 2026-06-07 07:00:32 | 1 | International Results CSV 1 | elo://13739/home | |
| 27478 | Thailand 143 | 1983-07-18 | 1499.3528516880376 | 40.0 | 0.7358026238596267 | 13739 | 1 | Great Wall Cup 92 | 2026-06-07 07:00:32 | 2026-06-07 07:00:32 | 1 | International Results CSV 1 | elo://13739/away | |
| 27483 | China 33 | 1983-07-20 | 1617.0850516134346 | 40.0 | 14.211152846494997 | 13742 | 1 | Great Wall Cup 92 | 2026-06-07 07:00:32 | 2026-06-07 07:00:32 | 1 | International Results CSV 1 | elo://13742/home | |
| 27484 | Thailand 143 | 1983-07-20 | 1485.1416988415426 | 40.0 | -14.211152846494997 | 13742 | 1 | Great Wall Cup 92 | 2026-06-07 07:00:32 | 2026-06-07 07:00:32 | 1 | International Results CSV 1 | elo://13742/away | |
| 28369 | China 33 | 1984-06-21 | 1571.3904032623848 | 40.0 | 9.300687091777263 | 14185 | 1 | Great Wall Cup 92 | 2026-06-07 07:00:33 | 2026-06-07 07:00:33 | 1 | International Results CSV 1 | elo://14185/home | |
| 28370 | India 92 | 1984-06-21 | 1345.3435802448214 | 40.0 | -9.300687091777263 | 14185 | 1 | Great Wall Cup 92 | 2026-06-07 07:00:33 | 2026-06-07 07:00:33 | 1 | International Results CSV 1 | elo://14185/away | |
| 30785 | China 33 | 1986-07-31 | 1633.617421421254 | 40.0 | -6.811490255488707 | 15393 | 1 | Great Wall Cup 92 | 2026-06-07 07:00:35 | 2026-06-07 07:00:35 | 1 | International Results CSV 1 | elo://15393/home | |
| 30786 | Congo Republic 161 | 1986-07-31 | 1523.9903101880236 | 40.0 | 6.811490255488707 | 15393 | 1 | Great Wall Cup 92 | 2026-06-07 07:00:35 | 2026-06-07 07:00:35 | 1 | International Results CSV 1 | elo://15393/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)
);