3 rows where game_id = 5 sorted by won

View and edit SQL

Suggested facets: won

Link rowid player faction game_id won ▼ victory_points dominance
17 david Eyrie Dynasty 1616349600 5 0 24 0
19 alex Woodland Alliance 1616349600 5 0 12 0
18 terra Underground Duchy 1616349600 5 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
);