6 rows where player = "alex"

View and edit SQL

Suggested facets: victory_points, dominance

won

player

  • alex · 6
Link rowid ▼ player faction game_id won victory_points dominance
3 alex Marquise de Cat 1613926800 1 0 27 0
6 alex Eyrie Dynasty 1614452400 2 1 30 0
10 alex Underground Duchy 1614459600 3 0 0 1
14 alex Riverfolk Company 1615143600 4 1 30 0
19 alex Woodland Alliance 1616349600 5 0 12 0
22 alex Vagabond 1617127200 6 0 24 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
);