5 rows where game_id = 4 sorted by player

View and edit SQL

Suggested facets: won

victory_points

game_id

  • 1615143600 · 5
Link rowid player ▼ faction game_id won victory_points dominance
14 alex Riverfolk Company 1615143600 4 1 30 0
12 david Lizard Cult 1615143600 4 0 10 0
16 gabe Corvid Conspiracy 1615143600 4 0 22 0
15 lauren Marquise de Cat 1615143600 4 0 19 0
13 terra Eyrie Dynasty 1615143600 4 0 20 0

Advanced export

JSON shape: default, array, newline-delimited

CSV options:

CREATE TABLE player_factions(
  player TEXT REFERENCES players(name),
  faction TEXT REFERENCES factions(name),
  game_id INTEGER REFERENCES games(id),
  won INTEGER,
  victory_points INTEGER,
  dominance INTEGER
);