UI and better date generation finished

This commit is contained in:
QkoSad
2024-11-21 21:01:19 +02:00
parent 0b00163fdf
commit 3b572380bb
15 changed files with 1043 additions and 386 deletions
+8
View File
@@ -127,3 +127,11 @@ END$$
DELIMITER ;
SELECT t.user,t.date,t.project,u.f_name,u.l_name,p.name,SUM(t.time) as total_time
FROM Timelog t
INNER JOIN Project p ON p.id=t.project
INNER JOIN User u ON u.id=t.user
GROUP BY t.user
ORDER BY total_time DESC
LIMIT 10;