2 rows where faction = "Eyrie Dynasty" and player = "terra" sorted by won descending

View and edit SQL

player

  • terra · 2

faction

  • Eyrie Dynasty · 2
Link rowid player faction game_id won ▲ victory_points dominance
9 terra Eyrie Dynasty 1614459600 3 0 22 0
13 terra Eyrie Dynasty 1615143600 4 0 20 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
);