home / football

elo_record

10 rows where competition_id = 188

✎ 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
92079 Mauritius 108 2023-06-11 1205.0976159383579 40.0 14.80537087852963 46040 1 Mauritius Four Nations Cup 188 2026-06-07 07:03:00.537087 2026-06-07 07:03:00.537087 1   International Results CSV 1 elo://46040/home
92080 Pakistan 129 2023-06-11 1083.131402727517 40.0 -14.80537087852963 46040 1 Mauritius Four Nations Cup 188 2026-06-07 07:03:00.537090 2026-06-07 07:03:00.537090 1   International Results CSV 1 elo://46040/away
92107 Pakistan 129 2023-06-14 1080.0830912849005 40.0 -3.048311442616523 46054 1 Mauritius Four Nations Cup 188 2026-06-07 07:03:00.539709 2026-06-07 07:03:00.539710 1   International Results CSV 1 elo://46054/home
92108 Kenya 68 2023-06-14 1519.6096951843756 40.0 3.048311442616523 46054 1 Mauritius Four Nations Cup 188 2026-06-07 07:03:00.539713 2026-06-07 07:03:00.539713 1   International Results CSV 1 elo://46054/away
92109 Mauritius 108 2023-06-14 1178.4555892022677 40.0 -26.6420267360902 46055 1 Mauritius Four Nations Cup 188 2026-06-07 07:03:00.539895 2026-06-07 07:03:00.539895 1   International Results CSV 1 elo://46055/home
92110 Djibouti 111 2023-06-14 1111.8089667114136 40.0 26.6420267360902 46055 1 Mauritius Four Nations Cup 188 2026-06-07 07:03:00.539898 2026-06-07 07:03:00.539898 1   International Results CSV 1 elo://46055/away
92227 Djibouti 111 2023-06-17 1129.9877377018881 40.0 18.178770990474504 46114 1 Mauritius Four Nations Cup 188 2026-06-07 07:03:00.550938 2026-06-07 07:03:00.550938 1   International Results CSV 1 elo://46114/home
92228 Pakistan 129 2023-06-17 1061.904320294426 40.0 -18.178770990474504 46114 1 Mauritius Four Nations Cup 188 2026-06-07 07:03:00.550941 2026-06-07 07:03:00.550941 1   International Results CSV 1 elo://46114/away
92259 Mauritius 108 2023-06-18 1213.5335101942253 40.0 35.077920991957626 46130 1 Mauritius Four Nations Cup 188 2026-06-07 07:03:00.553921 2026-06-07 07:03:00.553921 1   International Results CSV 1 elo://46130/home
92260 Kenya 68 2023-06-18 1484.531774192418 40.0 -35.077920991957626 46130 1 Mauritius Four Nations Cup 188 2026-06-07 07:03:00.553924 2026-06-07 07:03:00.553924 1   International Results CSV 1 elo://46130/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 1268.804ms