mirror of
https://github.com/OpenFusionProject/scripts.git
synced 2024-11-23 06:10:08 +00:00
Compare commits
1 Commits
0203ad29cf
...
7d2e0c29e0
Author | SHA1 | Date | |
---|---|---|---|
|
7d2e0c29e0 |
@ -77,12 +77,10 @@ def fetch_my_ranks(pcuid, epid, date):
|
|||||||
RaceResults.PlayerID,
|
RaceResults.PlayerID,
|
||||||
Players.FirstName,
|
Players.FirstName,
|
||||||
Players.LastName,
|
Players.LastName,
|
||||||
RaceResults.Score
|
MAX(RaceResults.Score) AS MaxScore
|
||||||
FROM RaceResults
|
FROM RaceResults
|
||||||
INNER JOIN Players ON RaceResults.PlayerID=Players.PlayerID
|
INNER JOIN Players ON RaceResults.PlayerID=Players.PlayerID
|
||||||
WHERE RaceResults.PlayerID=? AND EPID=? AND DATETIME(Timestamp, 'unixepoch') > DATETIME('now', ?)
|
WHERE RaceResults.PlayerID=? AND EPID=? AND DATETIME(Timestamp, 'unixepoch') > DATETIME('now', ?);
|
||||||
ORDER BY RaceResults.Score DESC
|
|
||||||
LIMIT 1;
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
args = (pcuid, epid, date)
|
args = (pcuid, epid, date)
|
||||||
|
Loading…
Reference in New Issue
Block a user