6 rows where player = "terra" sorted by player

View and edit SQL

Suggested facets: won, victory_points

player

  • terra · 6
Link rowid player ▼ faction game_id won victory_points dominance
2 terra Lizard Cult 1613926800 1 0 29 0
5 terra Vagabond 1614452400 2 1 30 0
9 terra Eyrie Dynasty 1614459600 3 0 22 0
13 terra Eyrie Dynasty 1615143600 4 0 20 0
18 terra Underground Duchy 1616349600 5 1 30 0
21 terra Underground Duchy 1617127200 6 1 30 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
);