home / my_database

Menu
  • Playoff Bracket
  • Game Predictor
  • Season Predictor

scheduled_games

2 rows where home_team_id = 328

✎ 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
1029019 Grand Rapids Griffins 328 Manitoba Moose 321 2026-05-09
1029039 Grand Rapids Griffins 328 Chicago Wolves 330 2026-05-23

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 7.115ms