Compare commits

..

1 Commits

View File

@ -77,12 +77,10 @@ def fetch_my_ranks(pcuid, epid, date):
RaceResults.PlayerID,
Players.FirstName,
Players.LastName,
RaceResults.Score
MAX(RaceResults.Score) AS MaxScore
FROM RaceResults
INNER JOIN Players ON RaceResults.PlayerID=Players.PlayerID
WHERE RaceResults.PlayerID=? AND EPID=? AND DATETIME(Timestamp, 'unixepoch') > DATETIME('now', ?)
ORDER BY RaceResults.Score DESC
LIMIT 1;
WHERE RaceResults.PlayerID=? AND EPID=? AND DATETIME(Timestamp, 'unixepoch') > DATETIME('now', ?);
"""
args = (pcuid, epid, date)