3 rows where player = "terra" and won = 0

View and edit SQL

Suggested facets: faction

won

player

  • terra · 3
Link rowid ▼ player faction game_id won victory_points dominance
2 terra Lizard Cult 1613926800 1 0 29 0
9 terra Eyrie Dynasty 1614459600 3 0 22 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
);