elo_record
4 rows where competition_id = 194
This data as json, CSV (advanced)
Suggested facets: team_id, date, source_match_id, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 95337 | Brunei 193 | 2024-10-08 | 1028.9669396365787 | 40.0 | -26.98926776054941 | 47669 | 0 | ASEAN Championship qualification 194 | 2026-06-07 07:03:01.117398 | 2026-06-07 07:03:01.117398 | 1 | International Results CSV 1 | elo://47669/home | |
| 95338 | Timor-Leste 267 | 2024-10-08 | 956.1897300438097 | 40.0 | 26.989267760549296 | 47669 | 0 | ASEAN Championship qualification 194 | 2026-06-07 07:03:01.117401 | 2026-06-07 07:03:01.117402 | 1 | International Results CSV 1 | elo://47669/away | |
| 95705 | Timor-Leste 267 | 2024-10-15 | 960.3189062272405 | 40.0 | 4.129176183430786 | 47853 | 0 | ASEAN Championship qualification 194 | 2026-06-07 07:03:01.151660 | 2026-06-07 07:03:01.151660 | 1 | International Results CSV 1 | elo://47853/home | |
| 95706 | Brunei 193 | 2024-10-15 | 1024.8377634531478 | 40.0 | -4.1291761834309 | 47853 | 0 | ASEAN Championship qualification 194 | 2026-06-07 07:03:01.151663 | 2026-06-07 07:03:01.151663 | 1 | International Results CSV 1 | elo://47853/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)
);