home / football

elo_record

12 rows where competition_id = 75

✎ View and edit SQL

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
20867 Paraguay 37 1976-02-25 1527.028496053912 40.0 -9.786563204972026 10434 0 Copa Félix Bogado 75 2026-06-07 07:00:27 2026-06-07 07:00:27 1   International Results CSV 1 elo://10434/home
20868 Argentina 8 1976-02-25 1742.429592083647 40.0 9.786563204972026 10434 0 Copa Félix Bogado 75 2026-06-07 07:00:27 2026-06-07 07:00:27 1   International Results CSV 1 elo://10434/away
21041 Argentina 8 1976-04-28 1746.6365430895162 40.0 -10.79550177201304 10521 0 Copa Félix Bogado 75 2026-06-07 07:00:27 2026-06-07 07:00:27 1   International Results CSV 1 elo://10521/home
21042 Paraguay 37 1976-04-28 1558.4326801182444 40.0 10.79550177201304 10521 0 Copa Félix Bogado 75 2026-06-07 07:00:27 2026-06-07 07:00:27 1   International Results CSV 1 elo://10521/away
22173 Argentina 8 1977-08-24 1819.413241270226 40.0 7.928178105727056 11087 0 Copa Félix Bogado 75 2026-06-07 07:00:28 2026-06-07 07:00:28 1   International Results CSV 1 elo://11087/home
22174 Paraguay 37 1977-08-24 1560.77679166059 40.0 -7.928178105727056 11087 0 Copa Félix Bogado 75 2026-06-07 07:00:28 2026-06-07 07:00:28 1   International Results CSV 1 elo://11087/away
22181 Paraguay 37 1977-08-31 1593.412902051686 40.0 32.636110391095826 11091 0 Copa Félix Bogado 75 2026-06-07 07:00:28 2026-06-07 07:00:28 1   International Results CSV 1 elo://11091/home
22182 Argentina 8 1977-08-31 1786.7771308791303 40.0 -32.636110391095826 11091 0 Copa Félix Bogado 75 2026-06-07 07:00:28 2026-06-07 07:00:28 1   International Results CSV 1 elo://11091/away
27473 Paraguay 37 1983-07-14 1590.033775680505 40.0 32.32880306635457 13737 0 Copa Félix Bogado 75 2026-06-07 07:00:32 2026-06-07 07:00:32 1   International Results CSV 1 elo://13737/home
27474 Argentina 8 1983-07-14 1775.2667670178087 40.0 -32.32880306635457 13737 0 Copa Félix Bogado 75 2026-06-07 07:00:32 2026-06-07 07:00:32 1   International Results CSV 1 elo://13737/away
27489 Argentina 8 1983-07-21 1765.5111618607984 40.0 -9.755605157010223 13745 0 Copa Félix Bogado 75 2026-06-07 07:00:32 2026-06-07 07:00:32 1   International Results CSV 1 elo://13745/home
27490 Paraguay 37 1983-07-21 1599.7893808375152 40.0 9.755605157010223 13745 0 Copa Félix Bogado 75 2026-06-07 07:00:32 2026-06-07 07:00:32 1   International Results CSV 1 elo://13745/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 993.342ms