home / football

elo_record

10 rows where competition_id = 189

✎ 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
92221 Ticino 334 2023-06-17 1471.8601187068716 40.0 -28.139881293128383 46111 1 CONIFA World Football Cup qualification 189 2026-06-07 07:03:00.550383 2026-06-07 07:03:00.550383 1   International Results CSV 1 elo://46111/home
92222 Raetia 290 2023-06-17 1378.046591218996 40.0 28.139881293128383 46111 1 CONIFA World Football Cup qualification 189 2026-06-07 07:03:00.550386 2026-06-07 07:03:00.550387 1   International Results CSV 1 elo://46111/away
92425 Székely Land 307 2023-06-30 1455.6995342542125 40.0 25.471345559126576 46213 1 CONIFA World Football Cup qualification 189 2026-06-07 07:03:00.569335 2026-06-07 07:03:00.569335 1   International Results CSV 1 elo://46213/home
92426 Chameria 324 2023-06-30 1502.2874405102048 40.0 -25.471345559126576 46213 1 CONIFA World Football Cup qualification 189 2026-06-07 07:03:00.569338 2026-06-07 07:03:00.569338 1   International Results CSV 1 elo://46213/away
92431 Chameria 324 2023-07-01 1520.320012165997 40.0 18.032571655792253 46216 1 CONIFA World Football Cup qualification 189 2026-06-07 07:03:00.569893 2026-06-07 07:03:00.569893 1   International Results CSV 1 elo://46216/home
92432 Two Sicilies 285 2023-07-01 1449.9662481224318 40.0 -18.032571655792253 46216 1 CONIFA World Football Cup qualification 189 2026-06-07 07:03:00.569896 2026-06-07 07:03:00.569896 1   International Results CSV 1 elo://46216/away
92441 Székely Land 307 2023-07-02 1475.3695297283152 40.0 19.669995474102734 46221 1 CONIFA World Football Cup qualification 189 2026-06-07 07:03:00.570830 2026-06-07 07:03:00.570831 1   International Results CSV 1 elo://46221/home
92442 Two Sicilies 285 2023-07-02 1430.296252648329 40.0 -19.669995474102734 46221 1 CONIFA World Football Cup qualification 189 2026-06-07 07:03:00.570834 2026-06-07 07:03:00.570834 1   International Results CSV 1 elo://46221/away
92571 Kernow 141 2023-07-16 1626.9678695907453 40.0 11.889972635280856 46286 1 CONIFA World Football Cup qualification 189 2026-06-07 07:03:00.582970 2026-06-07 07:03:00.582971 1   International Results CSV 1 elo://46286/home
92572 Sápmi 278 2023-07-16 1453.7157590024876 40.0 -11.889972635280856 46286 1 CONIFA World Football Cup qualification 189 2026-06-07 07:03:00.582974 2026-06-07 07:03:00.582974 1   International Results CSV 1 elo://46286/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 1220.455ms