$players = $this->fetchAll('SELECT id FROM players');
21
22
1
foreach ($players as $player) {
23
$this->query(
24
"UPDATE players SET last_match = (
25
SELECT id FROM matches WHERE FIND_IN_SET(${player['id']}, team_a_players) OR FIND_IN_SET(${player['id']}, team_b_players) ORDER BY timestamp DESC LIMIT 1