h2h_record
7 rows where team_b_id = 80
This data as json, CSV (advanced)
Suggested facets: team_a_id, total_matches, wins_a, draws, goals_b, last_result, date (date), last_match_date (date), created_at (date), updated_at (date)
| h2h_id ▼ | team_a_id | team_b_id | date | total_matches | wins_a | wins_b | draws | goals_a | goals_b | last_match_date | last_result | last_match_id | competition_id | created_at | updated_at | created_by_run_id | updated_by_run_id | source_id | source_raw_key |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 1796 | Poland 49 | Silesia 80 | 1933-10-04 | 0 | 0 | 0 | 0 | 0 | 0 | 2026-06-07 07:03:18.447636 | 2026-06-07 07:03:18.447636 | 1 | International Results CSV 1 | h2h://80:49/1933-10-04 | |||||
| 2197 | Basque Country 35 | Silesia 80 | 1937-06-09 | 0 | 0 | 0 | 0 | 0 | 0 | 2026-06-07 07:03:18.451265 | 2026-06-07 07:03:18.451265 | 1 | International Results CSV 1 | h2h://80:35/1937-06-09 | |||||
| 3086 | Czechoslovakia 11 | Silesia 80 | 1948-04-20 | 0 | 0 | 0 | 0 | 0 | 0 | 2026-06-07 07:03:18.459788 | 2026-06-07 07:03:18.459788 | 1 | International Results CSV 1 | h2h://80:11/1948-04-20 | |||||
| 3647 | China 33 | Silesia 80 | 1952-08-24 | 0 | 0 | 0 | 0 | 0 | 0 | 2026-06-07 07:03:18.464661 | 2026-06-07 07:03:18.464661 | 1 | International Results CSV 1 | h2h://80:33/1952-08-24 | |||||
| 3756 | Poland 49 | Silesia 80 | 1953-04-26 | 1 | 1 | 0 | 0 | 2 | 1 | 1933-10-04 | L | 2026-06-07 07:03:18.465629 | 2026-06-07 07:03:18.465629 | 1 | International Results CSV 1 | h2h://80:49/1953-04-26 | |||
| 3810 | Poland 49 | Silesia 80 | 1953-09-13 | 2 | 2 | 0 | 0 | 5 | 3 | 1953-04-26 | L | 2026-06-07 07:03:18.466066 | 2026-06-07 07:03:18.466066 | 1 | International Results CSV 1 | h2h://80:49/1953-09-13 | |||
| 30534 | Poland 49 | Silesia 80 | 2006-12-09 | 3 | 2 | 0 | 1 | 8 | 6 | 1953-09-13 | D | 2026-06-07 07:03:25.431263 | 2026-06-07 07:03:25.431263 | 1 | International Results CSV 1 | h2h://80:49/2006-12-09 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE h2h_record (
h2h_id INTEGER NOT NULL,
team_a_id INTEGER NOT NULL,
team_b_id INTEGER NOT NULL,
date DATE NOT NULL,
total_matches INTEGER NOT NULL,
wins_a INTEGER NOT NULL,
wins_b INTEGER NOT NULL,
draws INTEGER NOT NULL,
goals_a INTEGER NOT NULL,
goals_b INTEGER NOT NULL,
last_match_date DATE,
last_result VARCHAR(1),
last_match_id INTEGER,
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_h2h_record PRIMARY KEY (h2h_id),
CONSTRAINT fk_h2h_record_team_a FOREIGN KEY(team_a_id) REFERENCES team (team_id),
CONSTRAINT fk_h2h_record_team_b FOREIGN KEY(team_b_id) REFERENCES team (team_id),
CONSTRAINT fk_h2h_record_source FOREIGN KEY(source_id) REFERENCES data_source (source_id),
CONSTRAINT fk_h2h_record_match FOREIGN KEY(last_match_id) REFERENCES match (match_id),
CONSTRAINT fk_h2h_record_competition FOREIGN KEY(competition_id) REFERENCES competition (competition_id)
);