2 rows where faction = "Marquise de Cat" sorted by player

View and edit SQL

player

faction

  • Marquise de Cat · 2
Link rowid player ▼ faction game_id won victory_points dominance
3 alex Marquise de Cat 1613926800 1 0 27 0
15 lauren Marquise de Cat 1615143600 4 0 19 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
);