home / my_database

scheduled_games

3 rows where away_team_id = 373

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: game_date (date)

game_id ▼ home_team_id away_team_id game_date
1028875 Wilkes-Barre/Scranton Penguins 316 Cleveland Monsters 373 2026-04-11
1028879 Lehigh Valley Phantoms 313 Cleveland Monsters 373 2026-04-12
1028900 Rochester Americans 323 Cleveland Monsters 373 2026-04-17

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

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)
);
Powered by Datasette · Queries took 9.861ms