MySQL 8 posiada funkcje okien ! Dlatego możesz wpisać w nim zapytanie w ten sposób:
SELECT username,
count(sentSmsId) OVER (partition by userId)
FROM sentSmsTable
JOIN userTable ON userId = sentUserId;
MySQL 8 posiada funkcje okien ! Dlatego możesz wpisać w nim zapytanie w ten sposób:
SELECT username,
count(sentSmsId) OVER (partition by userId)
FROM sentSmsTable
JOIN userTable ON userId = sentUserId;