2 rows where faction = "Vagabond" sorted by rowid descending

View and edit SQL

victory_points

Link rowid ▲ player faction game_id won victory_points dominance
22 alex Vagabond 1617127200 6 0 24 0
5 terra Vagabond 1614452400 2 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
);