scheduled_games
4 rows where home_team_id = 411
This data as json, CSV (advanced)
Suggested facets: away_team_id, game_date (date)
| game_id ▼ | home_team_id | away_team_id | game_date |
|---|---|---|---|
| 1028860 | Springfield Thunderbirds 411 | Rochester Americans 323 | 2026-04-10 |
| 1028873 | Springfield Thunderbirds 411 | Hartford Wolf Pack 307 | 2026-04-11 |
| 1028891 | Springfield Thunderbirds 411 | Lehigh Valley Phantoms 313 | 2026-04-15 |
| 1028914 | Springfield Thunderbirds 411 | Hartford Wolf Pack 307 | 2026-04-18 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE scheduled_games (
game_id INTEGER PRIMARY KEY,
home_team_id INTEGER NOT NULL,
away_team_id INTEGER NOT NULL,
game_date DATE NOT NULL,
FOREIGN KEY (home_team_id) REFERENCES team(team_id),
FOREIGN KEY (away_team_id) REFERENCES team(team_id)
);