Merge pull request 'remove-external-cox' (#153) from remove-external-cox into main
All checks were successful
CI/CD Pipeline / test (push) Successful in 15m14s
CI/CD Pipeline / deploy-staging (push) Has been skipped
CI/CD Pipeline / deploy-main (push) Successful in 17m58s

Reviewed-on: #153
This commit is contained in:
philipp 2024-01-05 22:24:27 +01:00
commit 882665cbd9

View File

@ -101,7 +101,7 @@ FROM (
) u
INNER JOIN rower r ON u.id = r.rower_id
INNER JOIN logbook l ON r.logbook_id = l.id
WHERE l.distance_in_km IS NOT NULL AND l.arrival LIKE '{year}-%'
WHERE l.distance_in_km IS NOT NULL AND l.arrival LIKE '{year}-%' AND u.name != 'Externe Steuerperson'
GROUP BY u.name
ORDER BY rowed_km DESC;
"