home / football

elo_record

12 rows where competition_id = 34

✎ View and edit SQL

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
5949 Mexico 57 1947-07-13 1629.57019560497 40.0 11.988595042747875 2975 0 NAFC Championship 34 2026-06-07 07:00:16 2026-06-07 07:00:16 1   International Results CSV 1 elo://2975/home
5950 United States 5 1947-07-13 1458.166364919352 40.0 -11.988595042747875 2975 0 NAFC Championship 34 2026-06-07 07:00:16 2026-06-07 07:00:16 1   International Results CSV 1 elo://2975/away
5951 Cuba 77 1947-07-17 1517.9027972409708 40.0 -14.550704698165646 2976 0 NAFC Championship 34 2026-06-07 07:00:16 2026-06-07 07:00:16 1   International Results CSV 1 elo://2976/home
5952 Mexico 57 1947-07-17 1644.1209003031356 40.0 14.550704698165646 2976 0 NAFC Championship 34 2026-06-07 07:00:16 2026-06-07 07:00:16 1   International Results CSV 1 elo://2976/away
5957 Cuba 77 1947-07-20 1534.4975805414265 40.0 16.594783300455674 2979 0 NAFC Championship 34 2026-06-07 07:00:16 2026-06-07 07:00:16 1   International Results CSV 1 elo://2979/home
5958 United States 5 1947-07-20 1441.5715816188963 40.0 -16.594783300455674 2979 0 NAFC Championship 34 2026-06-07 07:00:16 2026-06-07 07:00:16 1   International Results CSV 1 elo://2979/away
6569 Mexico 57 1949-09-04 1652.593812198425 40.0 8.472911895289371 3285 0 NAFC Championship 34 2026-06-07 07:00:16 2026-06-07 07:00:16 1   International Results CSV 1 elo://3285/home
6570 United States 5 1949-09-04 1407.3875204229034 40.0 -8.472911895289371 3285 0 NAFC Championship 34 2026-06-07 07:00:16 2026-06-07 07:00:16 1   International Results CSV 1 elo://3285/away
6575 Mexico 57 1949-09-11 1664.7507525311967 40.0 12.156940332771683 3288 0 NAFC Championship 34 2026-06-07 07:00:16 2026-06-07 07:00:16 1   International Results CSV 1 elo://3288/home
6576 Cuba 77 1949-09-11 1496.4798026945489 40.0 -12.156940332771683 3288 0 NAFC Championship 34 2026-06-07 07:00:16 2026-06-07 07:00:16 1   International Results CSV 1 elo://3288/away
6579 Cuba 77 1949-09-14 1491.4607689807222 40.0 -5.01903371382673 3290 0 NAFC Championship 34 2026-06-07 07:00:16 2026-06-07 07:00:16 1   International Results CSV 1 elo://3290/home
6580 United States 5 1949-09-14 1412.4065541367302 40.0 5.01903371382673 3290 0 NAFC Championship 34 2026-06-07 07:00:16 2026-06-07 07:00:16 1   International Results CSV 1 elo://3290/away

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

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)
        );
Powered by Datasette · Queries took 1147.275ms